emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/src ChangeLog coding.c


From: Andreas Schwab
Subject: [Emacs-diffs] emacs/src ChangeLog coding.c
Date: Thu, 24 Sep 2009 08:18:43 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Andreas Schwab <schwab> 09/09/24 08:18:43

Modified files:
        src            : ChangeLog coding.c 

Log message:
        (decode_coding_iso_2022): Fix operator precedence.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7766&r2=1.7767
http://cvs.savannah.gnu.org/viewcvs/emacs/src/coding.c?cvsroot=emacs&r1=1.439&r2=1.440

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7766
retrieving revision 1.7767
diff -u -b -r1.7766 -r1.7767
--- ChangeLog   24 Sep 2009 01:04:27 -0000      1.7766
+++ ChangeLog   24 Sep 2009 08:18:40 -0000      1.7767
@@ -1,3 +1,7 @@
+2009-09-24  Andreas Schwab  <address@hidden>
+
+       * coding.c (decode_coding_iso_2022): Fix operator precedence.
+
 2009-09-24  Juanma Barranquero  <address@hidden>
 
        * dired.c (Fdirectory_files): Fix typo in docstring.

Index: coding.c
===================================================================
RCS file: /sources/emacs/emacs/src/coding.c,v
retrieving revision 1.439
retrieving revision 1.440
diff -u -b -r1.439 -r1.440
--- coding.c    27 Aug 2009 07:30:29 -0000      1.439
+++ coding.c    24 Sep 2009 08:18:42 -0000      1.440
@@ -3860,7 +3860,7 @@
              continue;
 
            case '[':           /* specification of direction */
-             if (! CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION)
+             if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION))
                goto invalid_code;
              /* For the moment, nested direction is not supported.
                 So, `coding->mode & CODING_MODE_DIRECTION' zero means




reply via email to

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