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


From: Luc Teirlinck
Subject: [Emacs-diffs] Changes to emacs/src/keymap.c
Date: Sat, 07 Aug 2004 20:42:27 -0400

Index: emacs/src/keymap.c
diff -c emacs/src/keymap.c:1.292 emacs/src/keymap.c:1.293
*** emacs/src/keymap.c:1.292    Sat Jul 31 16:05:54 2004
--- emacs/src/keymap.c  Sun Aug  8 00:33:40 2004
***************
*** 1602,1608 ****
  
  DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
         doc: /* Return the binding for command KEYS in current local keymap 
only.
! KEYS is a string, a sequence of keystrokes.
  The binding is probably a symbol with a function definition.
  
  If optional argument ACCEPT-DEFAULT is non-nil, recognize default
--- 1602,1608 ----
  
  DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
         doc: /* Return the binding for command KEYS in current local keymap 
only.
! KEYS is a string or vector, a sequence of keystrokes.
  The binding is probably a symbol with a function definition.
  
  If optional argument ACCEPT-DEFAULT is non-nil, recognize default
***************
*** 1621,1627 ****
  
  DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 
0,
         doc: /* Return the binding for command KEYS in current global keymap 
only.
! KEYS is a string, a sequence of keystrokes.
  The binding is probably a symbol with a function definition.
  This function's return values are the same as those of `lookup-key'
  \(which see).
--- 1621,1627 ----
  
  DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 
0,
         doc: /* Return the binding for command KEYS in current global keymap 
only.
! KEYS is a string or vector, a sequence of keystrokes.
  The binding is probably a symbol with a function definition.
  This function's return values are the same as those of `lookup-key'
  \(which see).
***************
*** 3751,3757 ****
    DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
               doc: /* Keymap of key translations that can override keymaps.
  This keymap works like `function-key-map', but comes after that,
! and applies even for keys that have ordinary bindings.  */);
    Vkey_translation_map = Qnil;
  
    staticpro (&Vmouse_events);
--- 3751,3757 ----
    DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
               doc: /* Keymap of key translations that can override keymaps.
  This keymap works like `function-key-map', but comes after that,
! and its non-prefix bindings override ordinary bindings.  */);
    Vkey_translation_map = Qnil;
  
    staticpro (&Vmouse_events);




reply via email to

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