diff options
| author | Luc Teirlinck | 2003-11-11 03:59:26 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-11-11 03:59:26 +0000 |
| commit | e57d0aa8646bcdc210b8e722b16675a836144c9f (patch) | |
| tree | b4cfd8b3a03afc6b6e5d12626b342cfc86a6a5f2 | |
| parent | 409edc05695acae45695b4ea9bbb73cb7ab48f11 (diff) | |
| download | emacs-e57d0aa8646bcdc210b8e722b16675a836144c9f.tar.gz emacs-e57d0aa8646bcdc210b8e722b16675a836144c9f.zip | |
*** empty log message ***
| -rw-r--r-- | lispref/ChangeLog | 13 | ||||
| -rw-r--r-- | lispref/hash.texi | 3 |
2 files changed, 14 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 84a84237fce..c83b5d182e8 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2003-11-10 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * markers.texi (Creating Markers): Specify insertion type of | ||
| 4 | created markers. Add xref to `Marker Insertion Types'. | ||
| 5 | Second argument to `copy-marker' is optional. | ||
| 6 | (Marker Insertion Types): Mention that most markers are created | ||
| 7 | with insertion type nil. | ||
| 8 | (The Mark): Correctly describe when `mark' signals an error. | ||
| 9 | (The Region): Correctly describe when `region-beginning' and | ||
| 10 | `region-end' signal an error. | ||
| 11 | |||
| 1 | 2003-11-08 Luc Teirlinck <teirllm@auburn.edu> | 12 | 2003-11-08 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 13 | ||
| 3 | * hash.texi (Creating Hash): Clarify description of `eql'. | 14 | * hash.texi (Creating Hash): Clarify description of `eql'. |
| @@ -504,7 +515,7 @@ | |||
| 504 | (Hooks): Add run-mode-hooks and delay-mode-hooks. | 515 | (Hooks): Add run-mode-hooks and delay-mode-hooks. |
| 505 | 516 | ||
| 506 | * variables.texi (Creating Buffer-Local): Add buffer-local-value. | 517 | * variables.texi (Creating Buffer-Local): Add buffer-local-value. |
| 507 | (Variable Aliases): Clarify defvralias. | 518 | (Variable Aliases): Clarify defvaralias. |
| 508 | 519 | ||
| 509 | * loading.texi (Library Search): Add load-suffixes. | 520 | * loading.texi (Library Search): Add load-suffixes. |
| 510 | 521 | ||
diff --git a/lispref/hash.texi b/lispref/hash.texi index 3d4fe8aece9..a27894fa24b 100644 --- a/lispref/hash.texi +++ b/lispref/hash.texi | |||
| @@ -78,7 +78,8 @@ alternatives: | |||
| 78 | @item eql | 78 | @item eql |
| 79 | Keys which are numbers are ``the same'' if they are @code{equal}, that | 79 | Keys which are numbers are ``the same'' if they are @code{equal}, that |
| 80 | is, if they are equal in value and either both are integers or both | 80 | is, if they are equal in value and either both are integers or both |
| 81 | are floats; otherwise, two distinct objects are never ``the same''. | 81 | are floating point numbers; otherwise, two distinct objects are never |
| 82 | ``the same''. | ||
| 82 | 83 | ||
| 83 | @item eq | 84 | @item eq |
| 84 | Any two distinct Lisp objects are ``different'' as keys. | 85 | Any two distinct Lisp objects are ``different'' as keys. |