aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1991-05-10 21:47:42 +0000
committerRoland McGrath1991-05-10 21:47:42 +0000
commit657e634fa1c28e8b9bdea6c8af085b02e473ac46 (patch)
treeaaa7385dd42f4080a61fea745c53a37c2031d2b2
parentefa4ce8bbde45879fba79646c045d4d69c512137 (diff)
downloademacs-657e634fa1c28e8b9bdea6c8af085b02e473ac46.tar.gz
emacs-657e634fa1c28e8b9bdea6c8af085b02e473ac46.zip
*** empty log message ***
-rw-r--r--lisp/ledit.el15
-rw-r--r--lisp/lpr.el5
-rw-r--r--lisp/mail/mail-utils.el9
-rw-r--r--lisp/reposition.el1
-rw-r--r--lisp/time.el5
5 files changed, 15 insertions, 20 deletions
diff --git a/lisp/ledit.el b/lisp/ledit.el
index 2471b3f485b..298c254e8db 100644
--- a/lisp/ledit.el
+++ b/lisp/ledit.el
@@ -33,15 +33,12 @@
33(defconst ledit-buffer "*LEDIT*" 33(defconst ledit-buffer "*LEDIT*"
34 "Name of buffer in which Ledit accumulates data to send to Lisp.") 34 "Name of buffer in which Ledit accumulates data to send to Lisp.")
35 35
36;;;###autoload 36;;;###autoload (defconst ledit-save-files t
37(defconst ledit-save-files t 37;;;###autoload "*Non-nil means Ledit should save files before transferring to Lisp.")
38 "*Non-nil means Ledit should save files before transferring to Lisp.") 38;;;###autoload (defconst ledit-go-to-lisp-string "%?lisp"
39;;;###autoload 39;;;###autoload "*Shell commands to execute to resume Lisp job.")
40(defconst ledit-go-to-lisp-string "%?lisp" 40;;;###autoload (defconst ledit-go-to-liszt-string "%?liszt"
41 "*Shell commands to execute to resume Lisp job.") 41;;;###autoload "*Shell commands to execute to resume Lisp compiler job.")
42;;;###autoload
43(defconst ledit-go-to-liszt-string "%?liszt"
44 "*Shell commands to execute to resume Lisp compiler job.")
45 42
46(defun ledit-save-defun () 43(defun ledit-save-defun ()
47 "Save the current defun in the ledit buffer" 44 "Save the current defun in the ledit buffer"
diff --git a/lisp/lpr.el b/lisp/lpr.el
index 74c58236149..5c363301747 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -18,9 +18,8 @@
18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 19
20 20
21;;;###autoload 21;;;###autoload (defconst lpr-switches nil
22(defconst lpr-switches nil 22;;;###autoload "*List of strings to pass as extra switch args to lpr when it is invoked.")
23 "*List of strings to pass as extra switch args to lpr when it is invoked.")
24 23
25(defvar lpr-command (if (eq system-type 'usg-unix-v) 24(defvar lpr-command (if (eq system-type 'usg-unix-v)
26 "lp" "lpr") 25 "lp" "lpr")
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el
index cdfd6ff0b62..85ab1d3769f 100644
--- a/lisp/mail/mail-utils.el
+++ b/lisp/mail/mail-utils.el
@@ -20,11 +20,10 @@
20 20
21(provide 'mail-utils) 21(provide 'mail-utils)
22 22
23;;;###autoload 23;;;###autoload (defvar mail-use-rfc822 nil
24(defvar mail-use-rfc822 nil 24;;;###autoload "*If non-nil, use a full, hairy RFC822 parser on mail addresses.
25 "*If non-nil, use a full, hairy RFC822 parser on mail addresses. 25;;;###autoload Otherwise, (the default) use a smaller, somewhat faster, and
26Otherwise, (the default) use a smaller, somewhat faster, and 26;;;###autoload often correct parser.")
27often correct parser.")
28 27
29(defun mail-string-delete (string start end) 28(defun mail-string-delete (string start end)
30 "Returns a string containing all of STRING except the part 29 "Returns a string containing all of STRING except the part
diff --git a/lisp/reposition.el b/lisp/reposition.el
index 104021a4432..5802e6d86fe 100644
--- a/lisp/reposition.el
+++ b/lisp/reposition.el
@@ -31,6 +31,7 @@
31;;; after one of the same name in ZMACS, but the code is all-new and the 31;;; after one of the same name in ZMACS, but the code is all-new and the
32;;; behavior in some situations differs. 32;;; behavior in some situations differs.
33 33
34;;;###autoload
34(defun reposition-window (&optional arg) 35(defun reposition-window (&optional arg)
35 "Make the current definition and/or comment visible. 36 "Make the current definition and/or comment visible.
36Further invocations move it to the top of the window or toggle the 37Further invocations move it to the top of the window or toggle the
diff --git a/lisp/time.el b/lisp/time.el
index fe29ca567df..710daa42128 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -22,9 +22,8 @@
22 "*File name of mail inbox file, for indicating existence of new mail. 22 "*File name of mail inbox file, for indicating existence of new mail.
23Default is system-dependent, and is the same as used by Rmail.") 23Default is system-dependent, and is the same as used by Rmail.")
24 24
25;;;###autoload 25;;;###autoload (defconst display-time-day-and-date nil
26(defconst display-time-day-and-date nil "\ 26;;;###autoload "*Non-nil means \\[display-time] should display day and date as well as time.")
27*Non-nil means \\[display-time] should display day and date as well as time.")
28 27
29(defvar display-time-process nil) 28(defvar display-time-process nil)
30 29