diff options
| author | Luc Teirlinck | 2003-12-25 03:54:16 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-12-25 03:54:16 +0000 |
| commit | 4bdcd3ef21b00a16d1ea1edb2508df8c63d17069 (patch) | |
| tree | 599faf315f8d327fed18aa2f45d6b0e2b8fd0132 | |
| parent | 568ffbeed8969f6031d99b06c58b10bc963f8511 (diff) | |
| download | emacs-4bdcd3ef21b00a16d1ea1edb2508df8c63d17069.tar.gz emacs-4bdcd3ef21b00a16d1ea1edb2508df8c63d17069.zip | |
Replace all occurrences of @acronym{CAR} with @sc{car}, for
consistency with the rest of the Elisp manual. `car' and `cdr' are
historically acronyms, but are no longer widely thought of as such.
| -rw-r--r-- | lispref/commands.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/commands.texi b/lispref/commands.texi index a2838c68bb9..a46ff938e3a 100644 --- a/lispref/commands.texi +++ b/lispref/commands.texi | |||
| @@ -1096,7 +1096,7 @@ arguments to the key-binding lookup and modification functions. | |||
| 1096 | 1096 | ||
| 1097 | Emacs supports four kinds of mouse events: click events, drag events, | 1097 | Emacs supports four kinds of mouse events: click events, drag events, |
| 1098 | button-down events, and motion events. All mouse events are represented | 1098 | button-down events, and motion events. All mouse events are represented |
| 1099 | as lists. The @acronym{CAR} of the list is the event type; this says which | 1099 | as lists. The @sc{car} of the list is the event type; this says which |
| 1100 | mouse button was involved, and which modifier keys were used with it. | 1100 | mouse button was involved, and which modifier keys were used with it. |
| 1101 | The event type can also distinguish double or triple button presses | 1101 | The event type can also distinguish double or triple button presses |
| 1102 | (@pxref{Repeat Events}). The rest of the list elements give position | 1102 | (@pxref{Repeat Events}). The rest of the list elements give position |
| @@ -1560,7 +1560,7 @@ into another window. That produces a pair of events like these: | |||
| 1560 | key binding purposes. For a keyboard event, the event type equals the | 1560 | key binding purposes. For a keyboard event, the event type equals the |
| 1561 | event value; thus, the event type for a character is the character, and | 1561 | event value; thus, the event type for a character is the character, and |
| 1562 | the event type for a function key symbol is the symbol itself. For | 1562 | the event type for a function key symbol is the symbol itself. For |
| 1563 | events that are lists, the event type is the symbol in the @acronym{CAR} of | 1563 | events that are lists, the event type is the symbol in the @sc{car} of |
| 1564 | the list. Thus, the event type is always a symbol or a character. | 1564 | the list. Thus, the event type is always a symbol or a character. |
| 1565 | 1565 | ||
| 1566 | Two events of the same type are equivalent where key bindings are | 1566 | Two events of the same type are equivalent where key bindings are |
| @@ -2583,7 +2583,7 @@ This function returns the numeric meaning of a valid raw prefix argument | |||
| 2583 | value, @var{arg}. The argument may be a symbol, a number, or a list. | 2583 | value, @var{arg}. The argument may be a symbol, a number, or a list. |
| 2584 | If it is @code{nil}, the value 1 is returned; if it is @code{-}, the | 2584 | If it is @code{nil}, the value 1 is returned; if it is @code{-}, the |
| 2585 | value @minus{}1 is returned; if it is a number, that number is returned; | 2585 | value @minus{}1 is returned; if it is a number, that number is returned; |
| 2586 | if it is a list, the @acronym{CAR} of that list (which should be a number) is | 2586 | if it is a list, the @sc{car} of that list (which should be a number) is |
| 2587 | returned. | 2587 | returned. |
| 2588 | @end defun | 2588 | @end defun |
| 2589 | 2589 | ||