]> git.eshelyaron.com Git - emacs.git/commitdiff
* keyboard.c (parse_modifiers_uncached): Simpler fix.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 24 Oct 2011 03:05:21 +0000 (20:05 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 24 Oct 2011 03:05:21 +0000 (20:05 -0700)
src/keyboard.c

index 7c199b3ae14e136a0f6741ea75941047dd34473d..3ff0e82440b03551041c497d33e165c013ece62a 100644 (file)
@@ -6057,7 +6057,7 @@ parse_modifiers_uncached (Lisp_Object symbol, ptrdiff_t *modifier_end)
   modifiers = 0;
   name = SYMBOL_NAME (symbol);
 
-  for (i = 0; 2 <= SBYTES (name) - i; )
+  for (i = 0; i < SBYTES (name) - 1; )
     {
       ptrdiff_t this_mod_end = 0;
       int this_mod = 0;