emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/keymap.c [emacs-unicode-2]


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/keymap.c [emacs-unicode-2]
Date: Fri, 01 Oct 2004 04:27:01 -0400

Index: emacs/src/keymap.c
diff -c emacs/src/keymap.c:1.282.4.12 emacs/src/keymap.c:1.282.4.13
*** emacs/src/keymap.c:1.282.4.12       Fri Oct  1 08:04:10 2004
--- emacs/src/keymap.c  Fri Oct  1 08:18:00 2004
***************
*** 2707,2723 ****
        int from = XINT (XCAR (key)), to = XINT (XCDR (key));
        Lisp_Object k;
  
!       for (; from <= to; from++)
        {
!         k = make_number (from);
          sequence = where_is_internal_1 (binding, k, definition, noindirect,
                                          this, last, nomenus, last_is_meta);
          if (!NILP (sequence))
            result = Fcons (sequence, result);
!         if (from >= 128 && from < to)
!           from = to - 1;
        }
-       result = Fnreverse (result);
      }
    else
      {
--- 2707,2722 ----
        int from = XINT (XCAR (key)), to = XINT (XCDR (key));
        Lisp_Object k;
  
!       for (; from <= to; to--)
        {
!         k = make_number (to);
          sequence = where_is_internal_1 (binding, k, definition, noindirect,
                                          this, last, nomenus, last_is_meta);
          if (!NILP (sequence))
            result = Fcons (sequence, result);
!         if (to > 129)
!           to = 129;
        }
      }
    else
      {




reply via email to

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