[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/keymap.c
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/src/keymap.c |
Date: |
Fri, 04 Jun 2004 20:29:22 -0400 |
Index: emacs/src/keymap.c
diff -c emacs/src/keymap.c:1.288 emacs/src/keymap.c:1.289
*** emacs/src/keymap.c:1.288 Sat May 22 01:49:39 2004
--- emacs/src/keymap.c Sat Jun 5 00:28:36 2004
***************
*** 1623,1629 ****
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).
If optional argument ACCEPT-DEFAULT is non-nil, recognize default
--- 1623,1629 ----
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).
If optional argument ACCEPT-DEFAULT is non-nil, recognize default
***************
*** 1950,1956 ****
DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
doc: /* Return a pretty description of key-sequence KEYS.
Optional arg PREFIX is the sequence of keys leading up to KEYS.
! Control characters turn into "C-foo" sequences, meta into "M-foo"
spaces are put between sequence elements, etc. */)
(keys, prefix)
Lisp_Object keys, prefix;
--- 1950,1956 ----
DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
doc: /* Return a pretty description of key-sequence KEYS.
Optional arg PREFIX is the sequence of keys leading up to KEYS.
! Control characters turn into "C-foo" sequences, meta into "M-foo",
spaces are put between sequence elements, etc. */)
(keys, prefix)
Lisp_Object keys, prefix;
***************
*** 3225,3231 ****
DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
doc: /* Insert a description of contents of VECTOR.
! This is text showing the elements of vector matched against indices. */)
(vector, describer)
Lisp_Object vector, describer;
{
--- 3225,3232 ----
DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
doc: /* Insert a description of contents of VECTOR.
! This is text showing the elements of vector matched against indices.
! DESCRIBER is the output function used; nil means use `princ'. */)
(vector, describer)
Lisp_Object vector, describer;
{
- [Emacs-diffs] Changes to emacs/src/keymap.c,
Juanma Barranquero <=