comparison src/lread.c @ 90044:cb7f41387eb3

Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-70 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-669 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-678 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-679 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-680 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-688 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-689 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-690 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-691 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-69 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-70 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-71 Update from CVS
author Miles Bader <miles@gnu.org>
date Fri, 12 Nov 2004 02:53:04 +0000
parents d13df8a735d7 a65f6f256839
children f2ebccfa87d4
comparison
equal deleted inserted replaced
90043:e24e2e78deda 90044:cb7f41387eb3
2579 int next_char = READCHAR; 2579 int next_char = READCHAR;
2580 UNREAD (next_char); 2580 UNREAD (next_char);
2581 2581
2582 if (next_char <= 040 2582 if (next_char <= 040
2583 || (next_char < 0200 2583 || (next_char < 0200
2584 && index ("\"';([#?", next_char) 2584 && (index ("\"';([#?", next_char)
2585 || (!first_in_list && next_char == '`') 2585 || (!first_in_list && next_char == '`')
2586 || (new_backquote_flag && next_char == ','))) 2586 || (new_backquote_flag && next_char == ','))))
2587 { 2587 {
2588 *pch = c; 2588 *pch = c;
2589 return Qnil; 2589 return Qnil;
2590 } 2590 }
2591 2591
3817 3817
3818 #if (!(defined(WINDOWSNT) || (defined(HAVE_CARBON)))) 3818 #if (!(defined(WINDOWSNT) || (defined(HAVE_CARBON))))
3819 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is 3819 /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
3820 almost never correct, thereby causing a warning to be printed out that 3820 almost never correct, thereby causing a warning to be printed out that
3821 confuses users. Since PATH_LOADSEARCH is always overridden by the 3821 confuses users. Since PATH_LOADSEARCH is always overridden by the
3822 EMACSLOADPATH environment variable below, disable the warning on NT. 3822 EMACSLOADPATH environment variable below, disable the warning on NT.
3823 Also, when using the "self-contained" option for Carbon Emacs for MacOSX, 3823 Also, when using the "self-contained" option for Carbon Emacs for MacOSX,
3824 the "standard" paths may not exist and would be overridden by 3824 the "standard" paths may not exist and would be overridden by
3825 EMACSLOADPATH as on NT. Since this depends on how the executable 3825 EMACSLOADPATH as on NT. Since this depends on how the executable
3826 was build and packaged, turn off the warnings in general */ 3826 was build and packaged, turn off the warnings in general */
3827 3827