aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-12-15 03:07:30 +0000
committerGlenn Morris2009-12-15 03:07:30 +0000
commita50cd91a292debd7704fd993c47a9f98b4191778 (patch)
tree3f327f4d55e0c0831baac1b5320093ca829ed8e3
parent8fd11a7e6d0c5db07233ecf5e45d2cb28b879845 (diff)
downloademacs-a50cd91a292debd7704fd993c47a9f98b4191778.tar.gz
emacs-a50cd91a292debd7704fd993c47a9f98b4191778.zip
Update comments for edt doc changes.
-rw-r--r--lisp/emulation/edt-lk201.el2
-rw-r--r--lisp/emulation/edt-pc.el2
-rw-r--r--lisp/emulation/edt-vt100.el2
-rw-r--r--lisp/emulation/edt.el13
4 files changed, 10 insertions, 9 deletions
diff --git a/lisp/emulation/edt-lk201.el b/lisp/emulation/edt-lk201.el
index 9660f2a4596..a4c3fdc6714 100644
--- a/lisp/emulation/edt-lk201.el
+++ b/lisp/emulation/edt-lk201.el
@@ -24,7 +24,7 @@
24 24
25;;; Commentary: 25;;; Commentary:
26 26
27;; See edt-user.doc in the Emacs etc directory. 27;; See Info node `edt' for more details.
28 28
29;; ==================================================================== 29;; ====================================================================
30 30
diff --git a/lisp/emulation/edt-pc.el b/lisp/emulation/edt-pc.el
index ae53e7d736c..795c8de402e 100644
--- a/lisp/emulation/edt-pc.el
+++ b/lisp/emulation/edt-pc.el
@@ -24,7 +24,7 @@
24 24
25;;; Commentary: 25;;; Commentary:
26 26
27;; See edt-user.doc in the Emacs etc directory. 27;; See Info node `edt' for more details.
28 28
29;; ==================================================================== 29;; ====================================================================
30 30
diff --git a/lisp/emulation/edt-vt100.el b/lisp/emulation/edt-vt100.el
index bffa1b721f8..194face95b1 100644
--- a/lisp/emulation/edt-vt100.el
+++ b/lisp/emulation/edt-vt100.el
@@ -24,7 +24,7 @@
24 24
25;;; Commentary: 25;;; Commentary:
26 26
27;; See edt-user.doc in the Emacs etc directory. 27;; See Info node `edt' for more details.
28 28
29;; ==================================================================== 29;; ====================================================================
30 30
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el
index 6457925efa6..8dd2452fcf8 100644
--- a/lisp/emulation/edt.el
+++ b/lisp/emulation/edt.el
@@ -53,12 +53,13 @@
53;; 53;;
54;; (add-hook term-setup-hook 'edt-emulation-on) 54;; (add-hook term-setup-hook 'edt-emulation-on)
55 55
56;; IMPORTANT: Be sure to read the file, edt-user.doc, located in the 56;; IMPORTANT: Be sure to read the Info node `edt' for more details.
57;; Emacs "etc" directory. It contains very helpful user information. 57;; It contains very helpful user information.
58 58
59;; The EDT emulation consists of the following files: 59;; The EDT emulation consists of the following files:
60;; 60;;
61;; edt-user.doc - User Instructions and Sample Customization File 61;; edt.texi - User manual
62;; edt-user.el - Sample Customization File
62;; edt.el - EDT Emulation Functions and Default Configuration 63;; edt.el - EDT Emulation Functions and Default Configuration
63;; edt-lk201.el - Built-in support for DEC LK-201 Keyboards 64;; edt-lk201.el - Built-in support for DEC LK-201 Keyboards
64;; edt-vt100.el - Built-in support for DEC VT-100 (and above) terminals 65;; edt-vt100.el - Built-in support for DEC VT-100 (and above) terminals
@@ -102,8 +103,8 @@
102;; the Emacs function `query-replace'. The binding of 103;; the Emacs function `query-replace'. The binding of
103;; `query-replace' has been moved to GOLD-/. If you prefer to 104;; `query-replace' has been moved to GOLD-/. If you prefer to
104;; restore `query-replace' to GOLD-Enter, then use an EDT user 105;; restore `query-replace' to GOLD-Enter, then use an EDT user
105;; customization file, edt-user.el, to do this. See edt-user.doc 106;; customization file, edt-user.el, to do this.
106;; for details. 107;; See Info node `edt' for more details.
107 108
108;; 3. EDT Emulation now also works in XEmacs, including the 109;; 3. EDT Emulation now also works in XEmacs, including the
109;; highlighting of selected text. 110;; highlighting of selected text.
@@ -2235,7 +2236,7 @@ Optional argument USER-SETUP non-nil means called from function
2235 (define-prefix-command 'edt-user-gold-map) 2236 (define-prefix-command 'edt-user-gold-map)
2236 (fset 'edt-user-gold-map (copy-keymap 'edt-default-gold-map)) 2237 (fset 'edt-user-gold-map (copy-keymap 'edt-default-gold-map))
2237 ;; This is a function that the user can define for custom bindings. 2238 ;; This is a function that the user can define for custom bindings.
2238 ;; See etc/edt-user.doc. 2239 ;; See Info node `edt' for more details, and sample edt-user.el file.
2239 (if (fboundp 'edt-setup-user-bindings) 2240 (if (fboundp 'edt-setup-user-bindings)
2240 (edt-setup-user-bindings)) 2241 (edt-setup-user-bindings))
2241 (edt-select-user-global-map)) 2242 (edt-select-user-global-map))