aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2003-11-11 03:59:26 +0000
committerLuc Teirlinck2003-11-11 03:59:26 +0000
commite57d0aa8646bcdc210b8e722b16675a836144c9f (patch)
treeb4cfd8b3a03afc6b6e5d12626b342cfc86a6a5f2
parent409edc05695acae45695b4ea9bbb73cb7ab48f11 (diff)
downloademacs-e57d0aa8646bcdc210b8e722b16675a836144c9f.tar.gz
emacs-e57d0aa8646bcdc210b8e722b16675a836144c9f.zip
*** empty log message ***
-rw-r--r--lispref/ChangeLog13
-rw-r--r--lispref/hash.texi3
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 @@
12003-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
12003-11-08 Luc Teirlinck <teirllm@auburn.edu> 122003-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
79Keys which are numbers are ``the same'' if they are @code{equal}, that 79Keys which are numbers are ``the same'' if they are @code{equal}, that
80is, if they are equal in value and either both are integers or both 80is, if they are equal in value and either both are integers or both
81are floats; otherwise, two distinct objects are never ``the same''. 81are floating point numbers; otherwise, two distinct objects are never
82``the same''.
82 83
83@item eq 84@item eq
84Any two distinct Lisp objects are ``different'' as keys. 85Any two distinct Lisp objects are ``different'' as keys.