Mercurial > hg > xemacs-beta
comparison src/lread.c @ 5762:427a72c6ee17
Eliminate several compiler (clang) warnings.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Sun, 15 Sep 2013 23:47:37 +0900 |
parents | febc025c4e0c |
children | a216b3c2b09e |
comparison
equal
deleted
inserted
replaced
5761:a9fd35f939a5 | 5762:427a72c6ee17 |
---|---|
302 { | 302 { |
303 static int testing_mule = 0; /* Set this using debugger */ | 303 static int testing_mule = 0; /* Set this using debugger */ |
304 if (testing_mule) | 304 if (testing_mule) |
305 fprintf (stderr, | 305 fprintf (stderr, |
306 (c >= 0x20 && c <= 0x7E) ? "UU%c" : | 306 (c >= 0x20 && c <= 0x7E) ? "UU%c" : |
307 ((c == '\n') ? "UU\\n\n" : "UU\\%o"), c); | 307 ((c == '\n') ? "UU\\n%c" : "UU\\%o"), c); |
308 } | 308 } |
309 #endif | 309 #endif |
310 } | 310 } |
311 else if (MARKERP (readcharfun)) | 311 else if (MARKERP (readcharfun)) |
312 set_marker_position (readcharfun, marker_position (readcharfun) - 1); | 312 set_marker_position (readcharfun, marker_position (readcharfun) - 1); |