diff options
| author | Eli Zaretskii | 2001-09-26 19:55:41 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-09-26 19:55:41 +0000 |
| commit | 974548ec2c9217aba601ba91257366e934925932 (patch) | |
| tree | 4019b0f0ab33b01a0bedd2ff3c5a73c31c5839dd | |
| parent | 1ebfc51b1750880332d60d311de42801f57ffe14 (diff) | |
| download | emacs-974548ec2c9217aba601ba91257366e934925932.tar.gz emacs-974548ec2c9217aba601ba91257366e934925932.zip | |
(Creating Keymaps): Fix the description of the result of make-keymap.
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/keymaps.texi | 16 |
2 files changed, 15 insertions, 6 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index f0750e58bef..1999397ebab 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-09-26 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * keymaps.texi (Creating Keymaps): Fix the description of the | ||
| 4 | result of make-keymap. | ||
| 5 | |||
| 1 | 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * display.texi (Font Lookup, Attribute Functions) | 8 | * display.texi (Font Lookup, Attribute Functions) |
diff --git a/lispref/keymaps.texi b/lispref/keymaps.texi index 3adc85ece63..1877527dd90 100644 --- a/lispref/keymaps.texi +++ b/lispref/keymaps.texi | |||
| @@ -219,10 +219,13 @@ otherwise. More precisely, this function tests for a list whose | |||
| 219 | 219 | ||
| 220 | @c ??? This should come after make-sparse-keymap | 220 | @c ??? This should come after make-sparse-keymap |
| 221 | @defun make-keymap &optional prompt | 221 | @defun make-keymap &optional prompt |
| 222 | This function creates and returns a new full keymap (i.e., one | 222 | This function creates and returns a new full keymap. That keymap |
| 223 | containing a vector of length 128 for defining all the @sc{ascii} | 223 | contains a char-table (@pxref{Char-Tables}) with 384 slots: the first |
| 224 | characters). The new keymap initially binds all @sc{ascii} characters | 224 | 128 slots are for defining all the @sc{ascii} characters, the next 128 |
| 225 | to @code{nil}, and does not bind any other kind of event. | 225 | slots are for 8-bit European characters, and each one of the final 128 |
| 226 | slots is for one character set of non-@sc{ascii} characters supported by | ||
| 227 | Emacs. The new keymap initially binds all these characters to | ||
| 228 | @code{nil}, and does not bind any other kind of event. | ||
| 226 | 229 | ||
| 227 | @example | 230 | @example |
| 228 | @group | 231 | @group |
| @@ -238,8 +241,9 @@ the keymap. The prompt string should be provided for menu keymaps | |||
| 238 | 241 | ||
| 239 | @defun make-sparse-keymap &optional prompt | 242 | @defun make-sparse-keymap &optional prompt |
| 240 | This function creates and returns a new sparse keymap with no entries. | 243 | This function creates and returns a new sparse keymap with no entries. |
| 241 | The new keymap does not bind any events. The argument @var{prompt} | 244 | The new keymap does not contain a char-table, unlike @code{make-keymap}, |
| 242 | specifies a prompt string, as in @code{make-keymap}. | 245 | and does not bind any events. The argument @var{prompt} specifies a |
| 246 | prompt string, as in @code{make-keymap}. | ||
| 243 | 247 | ||
| 244 | @example | 248 | @example |
| 245 | @group | 249 | @group |