emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/lread.c [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/lread.c [lexbind]
Date: Thu, 11 Nov 2004 23:43:05 -0500

Index: emacs/src/lread.c
diff -c emacs/src/lread.c:1.288.2.6 emacs/src/lread.c:1.288.2.7
*** emacs/src/lread.c:1.288.2.6 Sat Sep  4 09:20:10 2004
--- emacs/src/lread.c   Fri Nov 12 04:21:14 2004
***************
*** 2510,2516 ****
              c = 0;
            else if (c == (CHAR_CTL | '?'))
              c = 127;
!           
            if (c & CHAR_SHIFT)
              {
                /* Shift modifier is valid only with [A-Za-z].  */
--- 2510,2516 ----
              c = 0;
            else if (c == (CHAR_CTL | '?'))
              c = 127;
! 
            if (c & CHAR_SHIFT)
              {
                /* Shift modifier is valid only with [A-Za-z].  */
***************
*** 2595,2603 ****
  
        if (next_char <= 040
            || (next_char < 0200
!               && index ("\"';([#?", next_char)
!               || (!first_in_list && next_char == '`')
!               || (new_backquote_flag && next_char == ',')))
          {
            *pch = c;
            return Qnil;
--- 2595,2603 ----
  
        if (next_char <= 040
            || (next_char < 0200
!               && (index ("\"';([#?", next_char)
!                   || (!first_in_list && next_char == '`')
!                   || (new_backquote_flag && next_char == ','))))
          {
            *pch = c;
            return Qnil;
***************
*** 3843,3849 ****
    /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
       almost never correct, thereby causing a warning to be printed out that
       confuses users.  Since PATH_LOADSEARCH is always overridden by the
!      EMACSLOADPATH environment variable below, disable the warning on NT.  
       Also, when using the "self-contained" option for Carbon Emacs for MacOSX,
       the "standard" paths may not exist and would be overridden by
       EMACSLOADPATH as on NT.  Since this depends on how the executable
--- 3843,3849 ----
    /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
       almost never correct, thereby causing a warning to be printed out that
       confuses users.  Since PATH_LOADSEARCH is always overridden by the
!      EMACSLOADPATH environment variable below, disable the warning on NT.
       Also, when using the "self-contained" option for Carbon Emacs for MacOSX,
       the "standard" paths may not exist and would be overridden by
       EMACSLOADPATH as on NT.  Since this depends on how the executable




reply via email to

[Prev in Thread] Current Thread [Next in Thread]