diff options
| -rw-r--r-- | lisp/allout.el | 4 | ||||
| -rw-r--r-- | lisp/calendar/cal-french.el | 2 | ||||
| -rw-r--r-- | lisp/calendar/holidays.el | 2 | ||||
| -rw-r--r-- | lisp/complete.el | 2 | ||||
| -rw-r--r-- | lisp/diary-lib.el | 8 | ||||
| -rw-r--r-- | lisp/ediff.el | 2 | ||||
| -rw-r--r-- | lisp/emulation/vip.el | 2 | ||||
| -rw-r--r-- | lisp/emulation/ws-mode.el | 2 | ||||
| -rw-r--r-- | lisp/forms.el | 8 | ||||
| -rw-r--r-- | lisp/gnus.el | 2 | ||||
| -rw-r--r-- | lisp/hippie-exp.el | 2 | ||||
| -rw-r--r-- | lisp/imenu.el | 4 | ||||
| -rw-r--r-- | lisp/mail/mail-hist.el | 4 | ||||
| -rw-r--r-- | lisp/mail/supercite.el | 2 | ||||
| -rw-r--r-- | lisp/nntp.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/inf-lisp.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/make-mode.el | 6 | ||||
| -rw-r--r-- | lisp/progmodes/simula.el | 4 | ||||
| -rw-r--r-- | lisp/term/x-win.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/refbib.el | 4 |
21 files changed, 34 insertions, 34 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index 3695929bce7..8f87eca6666 100644 --- a/lisp/allout.el +++ b/lisp/allout.el | |||
| @@ -455,14 +455,14 @@ and 'outline-distinctive-bullets-string'.") | |||
| 455 | (defvar outline-line-boundary-regexp () | 455 | (defvar outline-line-boundary-regexp () |
| 456 | "Outline-regexp with outline-style beginning-of-line anchor. | 456 | "Outline-regexp with outline-style beginning-of-line anchor. |
| 457 | 457 | ||
| 458 | (Ie, C-j, *or* C-m, for prefixes of hidden topics). This is properly | 458 | \(Ie, C-j, *or* C-m, for prefixes of hidden topics). This is properly |
| 459 | set when outline-regexp is produced by 'set-outline-regexp', so | 459 | set when outline-regexp is produced by 'set-outline-regexp', so |
| 460 | that (match-beginning 2) and (match-end 2) delimit the prefix.") | 460 | that (match-beginning 2) and (match-end 2) delimit the prefix.") |
| 461 | (make-variable-buffer-local 'outline-line-boundary-regexp) | 461 | (make-variable-buffer-local 'outline-line-boundary-regexp) |
| 462 | ;;;_ = outline-bob-regexp | 462 | ;;;_ = outline-bob-regexp |
| 463 | (defvar outline-bob-regexp () | 463 | (defvar outline-bob-regexp () |
| 464 | "Like outline-line-boundary-regexp, for headers at beginning of buffer. | 464 | "Like outline-line-boundary-regexp, for headers at beginning of buffer. |
| 465 | (match-beginning 2) and (match-end 2) delimit the prefix.") | 465 | \(match-beginning 2) and (match-end 2) delimit the prefix.") |
| 466 | (make-variable-buffer-local 'outline-bob-regexp) | 466 | (make-variable-buffer-local 'outline-bob-regexp) |
| 467 | ;;;_ = outline-header-subtraction | 467 | ;;;_ = outline-header-subtraction |
| 468 | (defvar outline-header-subtraction (1- (length outline-header-prefix)) | 468 | (defvar outline-header-subtraction (1- (length outline-header-prefix)) |
diff --git a/lisp/calendar/cal-french.el b/lisp/calendar/cal-french.el index 42b04c64c72..02167c13f18 100644 --- a/lisp/calendar/cal-french.el +++ b/lisp/calendar/cal-french.el | |||
| @@ -104,7 +104,7 @@ Gregorian date Sunday, December 31, 1 BC." | |||
| 104 | "Compute the French Revolutionary equivalent for absolute date DATE. | 104 | "Compute the French Revolutionary equivalent for absolute date DATE. |
| 105 | The result is a list of the form (MONTH DAY YEAR). | 105 | The result is a list of the form (MONTH DAY YEAR). |
| 106 | The absolute date is the number of days elapsed since the | 106 | The absolute date is the number of days elapsed since the |
| 107 | (imaginary) Gregorian date Sunday, December 31, 1 BC." | 107 | \(imaginary) Gregorian date Sunday, December 31, 1 BC." |
| 108 | (if (< date 654415) | 108 | (if (< date 654415) |
| 109 | (list 0 0 0);; pre-French Revolutionary date | 109 | (list 0 0 0);; pre-French Revolutionary date |
| 110 | (let* ((approx (/ (- date 654414) 366));; Approximation from below. | 110 | (let* ((approx (/ (- date 654414) 366));; Approximation from below. |
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el index 9be849fb72f..2500b60787f 100644 --- a/lisp/calendar/holidays.el +++ b/lisp/calendar/holidays.el | |||
| @@ -209,7 +209,7 @@ STRING)). Returns nil if it is not visible in the current calendar window." | |||
| 209 | (defun holiday-float (month dayname n string &optional day) | 209 | (defun holiday-float (month dayname n string &optional day) |
| 210 | "Holiday on MONTH, DAYNAME (Nth occurrence, Gregorian) called STRING. | 210 | "Holiday on MONTH, DAYNAME (Nth occurrence, Gregorian) called STRING. |
| 211 | If the Nth DAYNAME in MONTH is visible, the value returned is the list | 211 | If the Nth DAYNAME in MONTH is visible, the value returned is the list |
| 212 | (((MONTH DAY year) STRING)). | 212 | \(((MONTH DAY year) STRING)). |
| 213 | 213 | ||
| 214 | If N<0, count backward from the end of MONTH. | 214 | If N<0, count backward from the end of MONTH. |
| 215 | 215 | ||
diff --git a/lisp/complete.el b/lisp/complete.el index 03709c9a23a..b4e374532a3 100644 --- a/lisp/complete.el +++ b/lisp/complete.el | |||
| @@ -109,7 +109,7 @@ Some arcane rules: If `]' is in this string it must come first. | |||
| 109 | If `^' is in this string it must NOT come first. If `-' is in this | 109 | If `^' is in this string it must NOT come first. If `-' is in this |
| 110 | string, it must come first or right after `]'. In other words, if | 110 | string, it must come first or right after `]'. In other words, if |
| 111 | S is this string, then `[S]' must be a legal Emacs regular expression | 111 | S is this string, then `[S]' must be a legal Emacs regular expression |
| 112 | (not containing character ranges like `a-z').") | 112 | \(not containing character ranges like `a-z').") |
| 113 | 113 | ||
| 114 | 114 | ||
| 115 | (defvar PC-first-char 'x | 115 | (defvar PC-first-char 'x |
diff --git a/lisp/diary-lib.el b/lisp/diary-lib.el index f10f22e78c1..177194e88e9 100644 --- a/lisp/diary-lib.el +++ b/lisp/diary-lib.el | |||
| @@ -787,7 +787,7 @@ and XX:XXam or XX:XXpm." | |||
| 787 | (defun list-hebrew-diary-entries () | 787 | (defun list-hebrew-diary-entries () |
| 788 | "Add any Hebrew date entries from the diary file to `diary-entries-list'. | 788 | "Add any Hebrew date entries from the diary file to `diary-entries-list'. |
| 789 | Hebrew date diary entries must be prefaced by `hebrew-diary-entry-symbol' | 789 | Hebrew date diary entries must be prefaced by `hebrew-diary-entry-symbol' |
| 790 | (normally an `H'). The same diary date forms govern the style of the Hebrew | 790 | \(normally an `H'). The same diary date forms govern the style of the Hebrew |
| 791 | calendar entries, except that the Hebrew month names must be spelled in full. | 791 | calendar entries, except that the Hebrew month names must be spelled in full. |
| 792 | The Hebrew months are numbered from 1 to 13 with Nisan being 1, 12 being | 792 | The Hebrew months are numbered from 1 to 13 with Nisan being 1, 12 being |
| 793 | Adar I and 13 being Adar II; you must use `Adar I' if you want Adar of a | 793 | Adar I and 13 being Adar II; you must use `Adar I' if you want Adar of a |
| @@ -871,7 +871,7 @@ not be marked in the calendar. This function is provided for use with the | |||
| 871 | "Mark days in the calendar window that have Hebrew date diary entries. | 871 | "Mark days in the calendar window that have Hebrew date diary entries. |
| 872 | Each entry in diary-file (or included files) visible in the calendar window | 872 | Each entry in diary-file (or included files) visible in the calendar window |
| 873 | is marked. Hebrew date entries are prefaced by a hebrew-diary-entry-symbol | 873 | is marked. Hebrew date entries are prefaced by a hebrew-diary-entry-symbol |
| 874 | (normally an `H'). The same diary-date-forms govern the style of the Hebrew | 874 | \(normally an `H'). The same diary-date-forms govern the style of the Hebrew |
| 875 | calendar entries, except that the Hebrew month names must be spelled in full. | 875 | calendar entries, except that the Hebrew month names must be spelled in full. |
| 876 | The Hebrew months are numbered from 1 to 13 with Nisan being 1, 12 being | 876 | The Hebrew months are numbered from 1 to 13 with Nisan being 1, 12 being |
| 877 | Adar I and 13 being Adar II; you must use `Adar I' if you want Adar of a | 877 | Adar I and 13 being Adar II; you must use `Adar I' if you want Adar of a |
| @@ -1650,7 +1650,7 @@ have 30 days), and has Passover start on Tuesday.") | |||
| 1650 | (defun list-islamic-diary-entries () | 1650 | (defun list-islamic-diary-entries () |
| 1651 | "Add any Islamic date entries from the diary file to `diary-entries-list'. | 1651 | "Add any Islamic date entries from the diary file to `diary-entries-list'. |
| 1652 | Islamic date diary entries must be prefaced by an `islamic-diary-entry-symbol' | 1652 | Islamic date diary entries must be prefaced by an `islamic-diary-entry-symbol' |
| 1653 | (normally an `I'). The same diary date forms govern the style of the Islamic | 1653 | \(normally an `I'). The same diary date forms govern the style of the Islamic |
| 1654 | calendar entries, except that the Islamic month names must be spelled in full. | 1654 | calendar entries, except that the Islamic month names must be spelled in full. |
| 1655 | The Islamic months are numbered from 1 to 12 with Muharram being 1 and 12 being | 1655 | The Islamic months are numbered from 1 to 12 with Muharram being 1 and 12 being |
| 1656 | Dhu al-Hijjah. If an Islamic date diary entry begins with a | 1656 | Dhu al-Hijjah. If an Islamic date diary entry begins with a |
| @@ -1733,7 +1733,7 @@ not be marked in the calendar. This function is provided for use with the | |||
| 1733 | "Mark days in the calendar window that have Islamic date diary entries. | 1733 | "Mark days in the calendar window that have Islamic date diary entries. |
| 1734 | Each entry in diary-file (or included files) visible in the calendar window | 1734 | Each entry in diary-file (or included files) visible in the calendar window |
| 1735 | is marked. Islamic date entries are prefaced by a islamic-diary-entry-symbol | 1735 | is marked. Islamic date entries are prefaced by a islamic-diary-entry-symbol |
| 1736 | (normally an `I'). The same diary-date-forms govern the style of the Islamic | 1736 | \(normally an `I'). The same diary-date-forms govern the style of the Islamic |
| 1737 | calendar entries, except that the Islamic month names must be spelled in full. | 1737 | calendar entries, except that the Islamic month names must be spelled in full. |
| 1738 | The Islamic months are numbered from 1 to 12 with Muharram being 1 and 12 being | 1738 | The Islamic months are numbered from 1 to 12 with Muharram being 1 and 12 being |
| 1739 | Dhu al-Hijjah. Islamic date diary entries that begin with a | 1739 | Dhu al-Hijjah. Islamic date diary entries that begin with a |
diff --git a/lisp/ediff.el b/lisp/ediff.el index 013dc7bce9e..c64b359bf3f 100644 --- a/lisp/ediff.el +++ b/lisp/ediff.el | |||
| @@ -978,7 +978,7 @@ Lines that do not match are assumed to be error messages.") | |||
| 978 | "A list of killed diffs. | 978 | "A list of killed diffs. |
| 979 | A diff is saved here if it is replaced by a diff | 979 | A diff is saved here if it is replaced by a diff |
| 980 | from another buffer. This alist has the form: | 980 | from another buffer. This alist has the form: |
| 981 | ((num (A . diff) (B . diff)) ...), | 981 | \((num (A . diff) (B . diff)) ...), |
| 982 | where A or B parts may be missing.") | 982 | where A or B parts may be missing.") |
| 983 | 983 | ||
| 984 | 984 | ||
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el index b710df35f66..e343bf71cbb 100644 --- a/lisp/emulation/vip.el +++ b/lisp/emulation/vip.el | |||
| @@ -627,7 +627,7 @@ to vip-d-com for later use by vip-repeat" | |||
| 627 | 627 | ||
| 628 | (defun vip-repeat (arg) | 628 | (defun vip-repeat (arg) |
| 629 | "(ARG) Re-execute last destructive command. vip-d-com has the form | 629 | "(ARG) Re-execute last destructive command. vip-d-com has the form |
| 630 | (COM ARG CH REG), where COM is the command to be re-executed, ARG is the | 630 | \(COM ARG CH REG), where COM is the command to be re-executed, ARG is the |
| 631 | argument for COM, CH is a flag for repeat, and REG is optional and if exists | 631 | argument for COM, CH is a flag for repeat, and REG is optional and if exists |
| 632 | is the name of the register for COM." | 632 | is the name of the register for COM." |
| 633 | (interactive "P") | 633 | (interactive "P") |
diff --git a/lisp/emulation/ws-mode.el b/lisp/emulation/ws-mode.el index 26aea825b7f..d0fb619398f 100644 --- a/lisp/emulation/ws-mode.el +++ b/lisp/emulation/ws-mode.el | |||
| @@ -699,7 +699,7 @@ This will only work for errors raised by WordStar mode functions." | |||
| 699 | 699 | ||
| 700 | (defun ws-kill-bol () | 700 | (defun ws-kill-bol () |
| 701 | "In WordStar mode: Kill to beginning of line | 701 | "In WordStar mode: Kill to beginning of line |
| 702 | (like WordStar, not like Emacs)." | 702 | \(like WordStar, not like Emacs)." |
| 703 | (interactive) | 703 | (interactive) |
| 704 | (let ((p (point))) | 704 | (let ((p (point))) |
| 705 | (beginning-of-line) | 705 | (beginning-of-line) |
diff --git a/lisp/forms.el b/lisp/forms.el index b86f9bd6448..083eb1cb53f 100644 --- a/lisp/forms.el +++ b/lisp/forms.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | ;;; Copyright (C) 1991, 1993 Free Software Foundation, Inc. | 2 | ;;; Copyright (C) 1991, 1993 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Johan Vromans <jv@nl.net> | 4 | ;; Author: Johan Vromans <jv@nl.net> |
| 5 | ;; Version: $Revision: 2.4 $ | 5 | ;; Version: $Revision: 2.5 $ |
| 6 | 6 | ||
| 7 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 8 | 8 | ||
| @@ -266,10 +266,10 @@ | |||
| 266 | (provide 'forms) ;;; official | 266 | (provide 'forms) ;;; official |
| 267 | (provide 'forms-mode) ;;; for compatibility | 267 | (provide 'forms-mode) ;;; for compatibility |
| 268 | 268 | ||
| 269 | (defconst forms-version (substring "$Revision: 2.4 $" 11 -2) | 269 | (defconst forms-version (substring "$Revision: 2.5 $" 11 -2) |
| 270 | "The version number of forms-mode (as string). The complete RCS id is: | 270 | "The version number of forms-mode (as string). The complete RCS id is: |
| 271 | 271 | ||
| 272 | $Id: forms.el,v 2.4 1994/03/28 23:13:07 kwzh Exp kwzh $") | 272 | $Id: forms.el,v 2.5 1994/05/07 01:52:42 kwzh Exp rms $") |
| 273 | 273 | ||
| 274 | (defvar forms-mode-hooks nil | 274 | (defvar forms-mode-hooks nil |
| 275 | "Hook functions to be run upon entering Forms mode.") | 275 | "Hook functions to be run upon entering Forms mode.") |
| @@ -292,7 +292,7 @@ | |||
| 292 | 292 | ||
| 293 | (defvar forms-read-only nil | 293 | (defvar forms-read-only nil |
| 294 | "Non-nil means: visit the file in view (read-only) mode. | 294 | "Non-nil means: visit the file in view (read-only) mode. |
| 295 | (Defaults to the write access on the data file).") | 295 | \(Defaults to the write access on the data file).") |
| 296 | 296 | ||
| 297 | (defvar forms-multi-line "\C-k" | 297 | (defvar forms-multi-line "\C-k" |
| 298 | "If not nil: use this character to separate multi-line fields (default C-k).") | 298 | "If not nil: use this character to separate multi-line fields (default C-k).") |
diff --git a/lisp/gnus.el b/lisp/gnus.el index cd0272da233..b7ad1d37903 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el | |||
| @@ -142,7 +142,7 @@ given. Instead, if the first character of the name is `|', the | |||
| 142 | contents of the article is piped out to the named program. It is | 142 | contents of the article is piped out to the named program. It is |
| 143 | possible to save an article in an MH folder as follows: | 143 | possible to save an article in an MH folder as follows: |
| 144 | 144 | ||
| 145 | (setq gnus-author-copy \"|/usr/local/lib/mh/rcvstore +Article\")") | 145 | \(setq gnus-author-copy \"|/usr/local/lib/mh/rcvstore +Article\")") |
| 146 | 146 | ||
| 147 | (defvar gnus-author-copy-saver (function rmail-output) | 147 | (defvar gnus-author-copy-saver (function rmail-output) |
| 148 | "*A function called with a file name to save an author copy to. | 148 | "*A function called with a file name to save an author copy to. |
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index 65317f96a9d..9e7334ab569 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el | |||
| @@ -191,7 +191,7 @@ If nil, all buffers are searched.") | |||
| 191 | (defvar hippie-expand-ignore-buffers '("^ \\*.*\\*$" dired-mode) | 191 | (defvar hippie-expand-ignore-buffers '("^ \\*.*\\*$" dired-mode) |
| 192 | "*A list specifying which buffers not to search (if not current). | 192 | "*A list specifying which buffers not to search (if not current). |
| 193 | Can contain both regexps matching buffer names (as strings) and major modes | 193 | Can contain both regexps matching buffer names (as strings) and major modes |
| 194 | (as atoms)") | 194 | \(as atoms)") |
| 195 | 195 | ||
| 196 | ;;;###autoload | 196 | ;;;###autoload |
| 197 | (defun hippie-expand (arg) | 197 | (defun hippie-expand (arg) |
diff --git a/lisp/imenu.el b/lisp/imenu.el index 6733fcea807..d208a4568af 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el | |||
| @@ -108,7 +108,7 @@ Set it to `imenu--sort-by-name' if you want alphabetic sorting. | |||
| 108 | 108 | ||
| 109 | The function should take two arguments and return T if the first | 109 | The function should take two arguments and return T if the first |
| 110 | element should come before the second. The arguments are cons cells; | 110 | element should come before the second. The arguments are cons cells; |
| 111 | (NAME . POSITION). Look at `imenu--sort-by-name' for an example.") | 111 | \(NAME . POSITION). Look at `imenu--sort-by-name' for an example.") |
| 112 | 112 | ||
| 113 | (defvar imenu-max-items 25 | 113 | (defvar imenu-max-items 25 |
| 114 | "*Maximum number of elements in an index mouse-menu.") | 114 | "*Maximum number of elements in an index mouse-menu.") |
| @@ -141,7 +141,7 @@ with name concatenation.") | |||
| 141 | It should be a function that takes no arguments and returns an index | 141 | It should be a function that takes no arguments and returns an index |
| 142 | of the current buffer as an alist. The elements in the alist look | 142 | of the current buffer as an alist. The elements in the alist look |
| 143 | like: (INDEX-NAME . INDEX-POSITION). You may also nest index list like | 143 | like: (INDEX-NAME . INDEX-POSITION). You may also nest index list like |
| 144 | (INDEX-NAME . INDEX-ALIST). | 144 | \(INDEX-NAME . INDEX-ALIST). |
| 145 | 145 | ||
| 146 | This function is called within a `save-excursion'. | 146 | This function is called within a `save-excursion'. |
| 147 | 147 | ||
diff --git a/lisp/mail/mail-hist.el b/lisp/mail/mail-hist.el index ffa3003a45c..7cef0dbfac7 100644 --- a/lisp/mail/mail-hist.el +++ b/lisp/mail/mail-hist.el | |||
| @@ -180,7 +180,7 @@ HEADER is a string without the colon." | |||
| 180 | (defsubst mail-hist-add-header-contents-to-ring (header &optional contents) | 180 | (defsubst mail-hist-add-header-contents-to-ring (header &optional contents) |
| 181 | "Add the contents of HEADER to the header history ring. | 181 | "Add the contents of HEADER to the header history ring. |
| 182 | Optional argument CONTENTS is a string which will be the contents | 182 | Optional argument CONTENTS is a string which will be the contents |
| 183 | (instead of whatever's found in the header)." | 183 | \(instead of whatever's found in the header)." |
| 184 | (let ((ring (cdr (assoc header mail-hist-header-ring-alist)))) | 184 | (let ((ring (cdr (assoc header mail-hist-header-ring-alist)))) |
| 185 | (or ring | 185 | (or ring |
| 186 | ;; If the ring doesn't exist, we'll have to make it and add it | 186 | ;; If the ring doesn't exist, we'll have to make it and add it |
| @@ -251,7 +251,7 @@ its own independent history, as does the body of the message. | |||
| 251 | 251 | ||
| 252 | Although you can do so, it does not make much sense to call this | 252 | Although you can do so, it does not make much sense to call this |
| 253 | without having called `mail-hist-previous-header' first | 253 | without having called `mail-hist-previous-header' first |
| 254 | (\\[mail-hist-previous-header]). | 254 | \(\\[mail-hist-previous-header]). |
| 255 | 255 | ||
| 256 | The history only contains the contents of outgoing messages, not | 256 | The history only contains the contents of outgoing messages, not |
| 257 | received mail." | 257 | received mail." |
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index ad53816a9fb..b9e6f867daf 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el | |||
| @@ -264,7 +264,7 @@ be used to select the most preferred attribution since it reflects how | |||
| 264 | the original author would like to be distinguished. It should be | 264 | the original author would like to be distinguished. It should be |
| 265 | considered bad taste to put any attribution preference key before | 265 | considered bad taste to put any attribution preference key before |
| 266 | \"x-attribution\" in this list, except perhaps for \"sc-lastchoice\" | 266 | \"x-attribution\" in this list, except perhaps for \"sc-lastchoice\" |
| 267 | (see below). | 267 | \(see below). |
| 268 | 268 | ||
| 269 | Supercite remembers the last attribution used when reciting an already | 269 | Supercite remembers the last attribution used when reciting an already |
| 270 | cited paragraph. This attribution will always be saved with the | 270 | cited paragraph. This attribution will always be saved with the |
diff --git a/lisp/nntp.el b/lisp/nntp.el index 9ced03a4c53..607febab8ba 100644 --- a/lisp/nntp.el +++ b/lisp/nntp.el | |||
| @@ -54,7 +54,7 @@ If the kanji code of the NNTP server is different from the local kanji | |||
| 54 | code, the correct kanji code of the buffer associated with the NNTP | 54 | code, the correct kanji code of the buffer associated with the NNTP |
| 55 | server must be specified as follows: | 55 | server must be specified as follows: |
| 56 | 56 | ||
| 57 | (setq nntp-server-hook | 57 | \(setq nntp-server-hook |
| 58 | (function | 58 | (function |
| 59 | (lambda () | 59 | (lambda () |
| 60 | ;; Server's Kanji code is EUC (NEmacs hack). | 60 | ;; Server's Kanji code is EUC (NEmacs hack). |
diff --git a/lisp/progmodes/inf-lisp.el b/lisp/progmodes/inf-lisp.el index 6dc750585dd..4fa4009614a 100644 --- a/lisp/progmodes/inf-lisp.el +++ b/lisp/progmodes/inf-lisp.el | |||
| @@ -69,7 +69,7 @@ | |||
| 69 | "*What not to save on inferior Lisp's input history. | 69 | "*What not to save on inferior Lisp's input history. |
| 70 | Input matching this regexp is not saved on the input history in Inferior Lisp | 70 | Input matching this regexp is not saved on the input history in Inferior Lisp |
| 71 | mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword | 71 | mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword |
| 72 | (as in :a, :c, etc.)") | 72 | \(as in :a, :c, etc.)") |
| 73 | 73 | ||
| 74 | (defvar inferior-lisp-mode-map nil) | 74 | (defvar inferior-lisp-mode-map nil) |
| 75 | (cond ((not inferior-lisp-mode-map) | 75 | (cond ((not inferior-lisp-mode-map) |
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el index eb07bb412d4..13dab564e6b 100644 --- a/lisp/progmodes/make-mode.el +++ b/lisp/progmodes/make-mode.el | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | ;; So, for the meantime, this is not the default mode for makefiles. | 18 | ;; So, for the meantime, this is not the default mode for makefiles. |
| 19 | 19 | ||
| 20 | ;; $Id: makefile.el,v 1.14 1994/04/11 20:40:58 kwzh Exp rms $ | 20 | ;; $Id: makefile.el,v 1.15 1994/04/22 20:20:49 rms Exp rms $ |
| 21 | 21 | ||
| 22 | ;; This file is part of GNU Emacs. | 22 | ;; This file is part of GNU Emacs. |
| 23 | 23 | ||
| @@ -122,7 +122,7 @@ an item has been selected in the browser.") | |||
| 122 | 122 | ||
| 123 | (defvar makefile-pickup-everything-picks-up-filenames-p nil | 123 | (defvar makefile-pickup-everything-picks-up-filenames-p nil |
| 124 | "If non-nil, makefile-pickup-everything also picks up filenames as targets | 124 | "If non-nil, makefile-pickup-everything also picks up filenames as targets |
| 125 | (i.e. it calls makefile-find-filenames-as-targets), otherwise filenames are | 125 | \(i.e. it calls makefile-find-filenames-as-targets), otherwise filenames are |
| 126 | omitted.") | 126 | omitted.") |
| 127 | 127 | ||
| 128 | (defvar makefile-cleanup-continuations-p t | 128 | (defvar makefile-cleanup-continuations-p t |
| @@ -748,7 +748,7 @@ In the browser\'s client buffer, go to (end-of-line), insert a \'\\\' | |||
| 748 | character, insert a new blank line, go to that line and indent by one TAB. | 748 | character, insert a new blank line, go to that line and indent by one TAB. |
| 749 | This is most useful in the process of creating continued lines when copying | 749 | This is most useful in the process of creating continued lines when copying |
| 750 | large dependencies from the browser to the client buffer. | 750 | large dependencies from the browser to the client buffer. |
| 751 | (point) advances accordingly in the client buffer." | 751 | \(point) advances accordingly in the client buffer." |
| 752 | (interactive) | 752 | (interactive) |
| 753 | (save-excursion | 753 | (save-excursion |
| 754 | (set-buffer makefile-browser-client) | 754 | (set-buffer makefile-browser-client) |
diff --git a/lisp/progmodes/simula.el b/lisp/progmodes/simula.el index 82c5b87401a..52357f7aaf1 100644 --- a/lisp/progmodes/simula.el +++ b/lisp/progmodes/simula.el | |||
| @@ -74,12 +74,12 @@ and the cdr extra OTHERWISE indentation.") | |||
| 74 | (defconst simula-abbrev-keyword 'upcase | 74 | (defconst simula-abbrev-keyword 'upcase |
| 75 | "*Specify how to convert case for SIMULA keywords. | 75 | "*Specify how to convert case for SIMULA keywords. |
| 76 | Value is one of the symbols `upcase', `downcase', `capitalize', | 76 | Value is one of the symbols `upcase', `downcase', `capitalize', |
| 77 | (as in) `abbrev-table' or nil if they should not be changed.") | 77 | \(as in) `abbrev-table' or nil if they should not be changed.") |
| 78 | 78 | ||
| 79 | (defconst simula-abbrev-stdproc 'abbrev-table | 79 | (defconst simula-abbrev-stdproc 'abbrev-table |
| 80 | "*Specify how to convert case for standard SIMULA procedure and class names. | 80 | "*Specify how to convert case for standard SIMULA procedure and class names. |
| 81 | Value is one of the symbols `upcase', `downcase', `capitalize', | 81 | Value is one of the symbols `upcase', `downcase', `capitalize', |
| 82 | (as in) `abbrev-table', or nil if they should not be changed.") | 82 | \(as in) `abbrev-table', or nil if they should not be changed.") |
| 83 | 83 | ||
| 84 | (defvar simula-abbrev-file nil | 84 | (defvar simula-abbrev-file nil |
| 85 | "*File with extra abbrev definitions for use in SIMULA mode. | 85 | "*File with extra abbrev definitions for use in SIMULA mode. |
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index e9ad45c4488..08141175fe0 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el | |||
| @@ -205,7 +205,7 @@ | |||
| 205 | This is done before the user's startup file is loaded. They are copied to | 205 | This is done before the user's startup file is loaded. They are copied to |
| 206 | x-invocation args from which the X-related things are extracted, first | 206 | x-invocation args from which the X-related things are extracted, first |
| 207 | the switch (e.g., \"-fg\") in the following code, and possible values | 207 | the switch (e.g., \"-fg\") in the following code, and possible values |
| 208 | (e.g., \"black\") in the option handler code (e.g., x-handle-switch). | 208 | \(e.g., \"black\") in the option handler code (e.g., x-handle-switch). |
| 209 | This returns ARGS with the arguments that have been processed removed." | 209 | This returns ARGS with the arguments that have been processed removed." |
| 210 | (setq x-invocation-args args | 210 | (setq x-invocation-args args |
| 211 | args nil) | 211 | args nil) |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 7b3f71cff2e..73b58f68de5 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -682,7 +682,7 @@ Currently the only other valid parser is 'tex. | |||
| 682 | 682 | ||
| 683 | You can set this variable in hooks in your init file -- eg: | 683 | You can set this variable in hooks in your init file -- eg: |
| 684 | 684 | ||
| 685 | (add-hook 'tex-mode-hook (function (lambda () (setq ispell-parser 'tex))))") | 685 | \(add-hook 'tex-mode-hook (function (lambda () (setq ispell-parser 'tex))))") |
| 686 | 686 | ||
| 687 | (defvar ispell-region-end (make-marker) | 687 | (defvar ispell-region-end (make-marker) |
| 688 | "Marker that allows spelling continuations.") | 688 | "Marker that allows spelling continuations.") |
diff --git a/lisp/textmodes/refbib.el b/lisp/textmodes/refbib.el index d8344df54d9..c0a62a0610a 100644 --- a/lisp/textmodes/refbib.el +++ b/lisp/textmodes/refbib.el | |||
| @@ -72,7 +72,7 @@ may be eliminated if is exactly the same as the car. | |||
| 72 | for the journal name should be listed as beginning with a capital | 72 | for the journal name should be listed as beginning with a capital |
| 73 | letter, even if it really doesn't. | 73 | letter, even if it really doesn't. |
| 74 | For example, a value of '((\"Aij\" \"{Artificial Intelligence}\") | 74 | For example, a value of '((\"Aij\" \"{Artificial Intelligence}\") |
| 75 | (\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string | 75 | \(\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string |
| 76 | \"Artificial Intelligence\", but would replace Ijcai81 with the | 76 | \"Artificial Intelligence\", but would replace Ijcai81 with the |
| 77 | BibTeX macro \"ijcai7\".") | 77 | BibTeX macro \"ijcai7\".") |
| 78 | 78 | ||
| @@ -87,7 +87,7 @@ may be eliminated if is exactly the same as the car. | |||
| 87 | Because titles are capitalized before matching, the abbreviated title | 87 | Because titles are capitalized before matching, the abbreviated title |
| 88 | should be listed as beginning with a capital letter, even if it doesn't. | 88 | should be listed as beginning with a capital letter, even if it doesn't. |
| 89 | For example, a value of '((\"Aij\" \"{Artificial Intelligence}\") | 89 | For example, a value of '((\"Aij\" \"{Artificial Intelligence}\") |
| 90 | (\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string | 90 | \(\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string |
| 91 | \"Artificial Intelligence\", but would replace Ijcai81 with the | 91 | \"Artificial Intelligence\", but would replace Ijcai81 with the |
| 92 | BibTeX macro \"ijcai7\".") | 92 | BibTeX macro \"ijcai7\".") |
| 93 | 93 | ||