View | Details | Raw Unified | Return to bug 131857
Collapse All | Expand All

(-)new/src/sldisply.c (-8 / +9 lines)
Lines 2229-2242 Link Here
2229
   s = _pSLtt_tigetstr (Terminfo, cap);
2229
   s = _pSLtt_tigetstr (Terminfo, cap);
2230
#endif
2230
#endif
2231
2231
2232
   /* Do not strip pad info for alternate character set.  I need to make
2233
    * this more general.
2234
    */
2235
   /* FIXME: Priority=low; */
2236
   if (0 == strcmp (cap, "ac"))
2237
     return s;
2238
2239
   s = fixup_tgetstr (s);
2240
#ifdef USE_TERMCAP
2232
#ifdef USE_TERMCAP
2241
   if ((s >= area_buf) && (s < area_buf + sizeof(area_buf)))
2233
   if ((s >= area_buf) && (s < area_buf + sizeof(area_buf)))
2242
     {
2234
     {
Lines 2249-2254 Link Here
2249
	s = SLmake_string (s);
2241
	s = SLmake_string (s);
2250
     }
2242
     }
2251
#endif
2243
#endif
2244
2245
   /* Do not strip pad info for alternate character set.  I need to make
2246
    * this more general.
2247
    */
2248
   /* FIXME: Priority=low; */
2249
   if (0 == strcmp (cap, "ac"))
2250
     return s;
2251
2252
   s = fixup_tgetstr (s);
2252
   return s;
2253
   return s;
2253
}
2254
}

Return to bug 131857