emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r110589: font.c (Ffont_at): Fix previ


From: Kenichi Handa
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110589: font.c (Ffont_at): Fix previous change.
Date: Fri, 19 Oct 2012 22:00:46 +0900
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110589 [merge]
committer: Kenichi Handa <address@hidden>
branch nick: trunk
timestamp: Fri 2012-10-19 22:00:46 +0900
message:
  font.c (Ffont_at): Fix previous change.
modified:
  src/ChangeLog
  src/coding.c
  src/font.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-10-19 10:05:09 +0000
+++ b/src/ChangeLog     2012-10-19 12:59:42 +0000
@@ -1,3 +1,7 @@
+2012-10-19  Kenichi Handa  <address@hidden>
+
+       * font.c (Ffont_at): Fix previous change.
+
 2012-10-19  Eli Zaretskii  <address@hidden>
 
        * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.  See

=== modified file 'src/coding.c'
--- a/src/coding.c      2012-10-13 12:58:52 +0000
+++ b/src/coding.c      2012-10-19 12:59:42 +0000
@@ -415,7 +415,7 @@
     ISO_shift_out,             /* ISO_CODE_SO (0x0E) */
     ISO_shift_in,              /* ISO_CODE_SI (0x0F) */
     ISO_single_shift_2_7,      /* ISO_CODE_SS2_7 (0x19) */
-    ISO_escape,                        /* ISO_CODE_SO (0x1B) */
+    ISO_escape,                        /* ISO_CODE_ESC (0x1B) */
     ISO_control_1,             /* Control codes in the range
                                   0x80..0x9F, except for the
                                   following 3 codes.  */

=== modified file 'src/font.c'
--- a/src/font.c        2012-09-17 12:07:36 +0000
+++ b/src/font.c        2012-10-19 12:59:42 +0000
@@ -4775,7 +4775,7 @@
     {
       CHECK_NUMBER (position);
       CHECK_STRING (string);
-      if (! (0 < XINT (position) && XINT (position) < SCHARS (string)))
+      if (! (0 <= XINT (position) && XINT (position) < SCHARS (string)))
        args_out_of_range (string, position);
       pos = XINT (position);
     }


reply via email to

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