]> git.eshelyaron.com Git - emacs.git/commitdiff
font.c (Ffont_at): Fix previous change.
authorKenichi Handa <handa@gnu.org>
Fri, 19 Oct 2012 12:59:42 +0000 (21:59 +0900)
committerKenichi Handa <handa@gnu.org>
Fri, 19 Oct 2012 12:59:42 +0000 (21:59 +0900)
src/ChangeLog
src/coding.c
src/font.c

index cef1edff87d12ea3ebd7cf39a65832c0288ced94..a7f12bc37ad543b264bc1e9feb703fa596c80c9d 100644 (file)
@@ -1,3 +1,7 @@
+2012-10-19  Kenichi Handa  <handa@gnu.org>
+
+       * font.c (Ffont_at): Fix previous change.
+
 2012-10-19  Eli Zaretskii  <eliz@gnu.org>
 
        * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.  See
index 412d724522390210fbded165e1bab481fc55ab7a..7628a9fbf2e57b372a37ef7399a2a3253f946f41 100644 (file)
@@ -415,7 +415,7 @@ enum iso_code_class_type
     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.  */
index 629e8bb977a6d3d37a5fed5f0f9a32029382ac78..7cb4149ac4eccfaeb6b13e2298a421e42533b8c7 100644 (file)
@@ -4775,7 +4775,7 @@ the current buffer.  It defaults to the currently selected window.  */)
     {
       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);
     }