aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2002-09-16 02:49:22 +0000
committerJohn Paul Wallington2002-09-16 02:49:22 +0000
commitdd42d3ba17ac1094d9ccb06b21bf37de04d0bc4d (patch)
treecc8f9ef3a43810c2667daf7c0c16405c1f435c43
parentbac6e4e23a186311875fcd77300deb716f560df1 (diff)
downloademacs-dd42d3ba17ac1094d9ccb06b21bf37de04d0bc4d.tar.gz
emacs-dd42d3ba17ac1094d9ccb06b21bf37de04d0bc4d.zip
* xscheme.el (scheme-interaction-mode): Doc fix.
* net/eudc.el (eudc-plist-get): Doc fix.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/eudc.el2
-rw-r--r--lisp/xscheme.el6
3 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7e254eb5792..3873f450f37 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12002-09-16 John Paul Wallington <jpw@shootybangbang.com>
2
3 * xscheme.el (scheme-interaction-mode): Doc fix.
4
5 * net/eudc.el (eudc-plist-get): Doc fix.
6
12002-09-16 Kim F. Storm <storm@cua.dk> 72002-09-16 Kim F. Storm <storm@cua.dk>
2 8
3 * menu-bar.el (menu-bar-last-search-type): New var. 9 * menu-bar.el (menu-bar-last-search-type): New var.
diff --git a/lisp/net/eudc.el b/lisp/net/eudc.el
index 81caa04e45d..363bc8be825 100644
--- a/lisp/net/eudc.el
+++ b/lisp/net/eudc.el
@@ -134,7 +134,7 @@
134(defun eudc-plist-get (plist prop &optional default) 134(defun eudc-plist-get (plist prop &optional default)
135 "Extract a value from a property list. 135 "Extract a value from a property list.
136PLIST is a property list, which is a list of the form 136PLIST is a property list, which is a list of the form
137(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value 137\(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value
138corresponding to the given PROP, or DEFAULT if PROP is not 138corresponding to the given PROP, or DEFAULT if PROP is not
139one of the properties on the list." 139one of the properties on the list."
140 (if (eudc-plist-member plist prop) 140 (if (eudc-plist-member plist prop)
diff --git a/lisp/xscheme.el b/lisp/xscheme.el
index ec1c973a1cc..2eddecfb0d2 100644
--- a/lisp/xscheme.el
+++ b/lisp/xscheme.el
@@ -284,9 +284,9 @@ the command interpreter stack:
284 284
285Some possible command interpreter types and their meanings are: 285Some possible command interpreter types and their meanings are:
286 286
287[Evaluator] read-eval-print loop for evaluating expressions 287\[Evaluator] read-eval-print loop for evaluating expressions
288[Debugger] single character commands for debugging errors 288\[Debugger] single character commands for debugging errors
289[Where] single character commands for examining environments 289\[Where] single character commands for examining environments
290 290
291Starting with release 6.2 of Scheme, the latter two types of command 291Starting with release 6.2 of Scheme, the latter two types of command
292interpreters will change the major mode of the Scheme process buffer 292interpreters will change the major mode of the Scheme process buffer