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


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/src/lread.c
Date: Tue, 09 Nov 2004 08:30:14 -0500

Index: emacs/src/lread.c
diff -c emacs/src/lread.c:1.322 emacs/src/lread.c:1.323
*** emacs/src/lread.c:1.322     Mon Apr 26 21:28:40 2004
--- emacs/src/lread.c   Tue Nov  9 13:24:19 2004
***************
*** 2374,2380 ****
              c = 0;
            else if (c == (CHAR_CTL | '?'))
              c = 127;
!           
            if (c & CHAR_SHIFT)
              {
                /* Shift modifier is valid only with [A-Za-z].  */
--- 2374,2380 ----
              c = 0;
            else if (c == (CHAR_CTL | '?'))
              c = 127;
! 
            if (c & CHAR_SHIFT)
              {
                /* Shift modifier is valid only with [A-Za-z].  */
***************
*** 2459,2467 ****
  
        if (next_char <= 040
            || (next_char < 0200
!               && index ("\"';([#?", next_char)
!               || (!first_in_list && next_char == '`')
!               || (new_backquote_flag && next_char == ',')))
          {
            *pch = c;
            return Qnil;
--- 2459,2467 ----
  
        if (next_char <= 040
            || (next_char < 0200
!               && (index ("\"';([#?", next_char)
!                   || (!first_in_list && next_char == '`')
!                   || (new_backquote_flag && next_char == ','))))
          {
            *pch = c;
            return Qnil;
***************
*** 3681,3687 ****
    /* 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
--- 3681,3687 ----
    /* 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]