diff options
| author | Christopher Zaborsky | 1992-11-03 22:47:23 +0000 |
|---|---|---|
| committer | Christopher Zaborsky | 1992-11-03 22:47:23 +0000 |
| commit | f7644ea33d275f2a3ae6c9a5f558ee93070815df (patch) | |
| tree | 09b1ac96392d7737c1ab4bbb559c050e17459515 | |
| parent | 23317eaca1845f07f2f3d53026953b20c919d8d8 (diff) | |
| download | emacs-f7644ea33d275f2a3ae6c9a5f558ee93070815df.tar.gz emacs-f7644ea33d275f2a3ae6c9a5f558ee93070815df.zip | |
Doc fix.
| -rw-r--r-- | lisp/subr.el | 6 | ||||
| -rw-r--r-- | lisp/superyank.el | 20 | ||||
| -rw-r--r-- | lisp/term/sun-mouse.el | 7 |
3 files changed, 18 insertions, 15 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index b866c920e2d..54db5f17420 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -410,9 +410,9 @@ and then modifies one entry in it." | |||
| 410 | 410 | ||
| 411 | 411 | ||
| 412 | (defmacro lambda (&rest cdr) | 412 | (defmacro lambda (&rest cdr) |
| 413 | "Macro which allows one to write (lambda ...) for anonymous functions | 413 | "Macro which allows one to write (lambda ...) for anonymous functions. |
| 414 | instead of having to write (function (lambda ...)) or '(lambda ...), the | 414 | This is instead of having to write (function (lambda ...)) or |
| 415 | latter of which won't get byte-compiled." | 415 | '(lambda ...), the latter of which won't get byte-compiled." |
| 416 | (` (function (lambda (,@ cdr))))) | 416 | (` (function (lambda (,@ cdr))))) |
| 417 | 417 | ||
| 418 | ;;; subr.el ends here | 418 | ;;; subr.el ends here |
diff --git a/lisp/superyank.el b/lisp/superyank.el index 7c83885821c..f76e6c7c3bf 100644 --- a/lisp/superyank.el +++ b/lisp/superyank.el | |||
| @@ -1136,11 +1136,12 @@ sy-use-only-preference-p (default: nil) | |||
| 1136 | ;; attribution if none could be found from the paragraph. | 1136 | ;; attribution if none could be found from the paragraph. |
| 1137 | ;; | 1137 | ;; |
| 1138 | (defun sy-fill-paragraph-manually (arg) | 1138 | (defun sy-fill-paragraph-manually (arg) |
| 1139 | "Fill paragraph containing or following point, automatically finding | 1139 | "Fill paragraph containing or following point. |
| 1140 | the sy-cite-regexp and using it as the prefix. If the sy-cite-regexp | 1140 | This automatically finds the sy-cite-regexp and uses it as the prefix. |
| 1141 | is not in the first line of the paragraph, it makes a guess at what | 1141 | If the sy-cite-regexp is not in the first line of the paragraph, it |
| 1142 | the fill-prefix for the paragraph should be by looking at the first | 1142 | makes a guess at what the fill-prefix for the paragraph should be by |
| 1143 | line and taking anything up to the first alphanumeric character. | 1143 | looking at the first line and taking anything up to the first |
| 1144 | alphanumeric character. | ||
| 1144 | 1145 | ||
| 1145 | Prefix arg means justify both sides of paragraph as well. | 1146 | Prefix arg means justify both sides of paragraph as well. |
| 1146 | 1147 | ||
| @@ -1207,7 +1208,8 @@ attribution string used to cite lines." | |||
| 1207 | ;; insert the persistant attribution at point | 1208 | ;; insert the persistant attribution at point |
| 1208 | ;; | 1209 | ;; |
| 1209 | (defun sy-insert-persist-attribution () | 1210 | (defun sy-insert-persist-attribution () |
| 1210 | "Insert the persistant attribution at the beginning of the line that | 1211 | "Insert the persistant attribution. |
| 1212 | This inserts the peristant attribution at the beginning of the line that | ||
| 1211 | point is on. This string is the last attribution confirmed and used | 1213 | point is on. This string is the last attribution confirmed and used |
| 1212 | in the yanked reply buffer." | 1214 | in the yanked reply buffer." |
| 1213 | (interactive) | 1215 | (interactive) |
| @@ -1222,9 +1224,9 @@ in the yanked reply buffer." | |||
| 1222 | ;; open a line putting the attribution at the beginning | 1224 | ;; open a line putting the attribution at the beginning |
| 1223 | 1225 | ||
| 1224 | (defun sy-open-line (arg) | 1226 | (defun sy-open-line (arg) |
| 1225 | "Insert a newline and leave point before it. Also inserts the | 1227 | "Insert a newline and leave point before it. |
| 1226 | persistant attribution at the beginning of the line. With arg, | 1228 | Also inserts the persistant attribution at the beginning of the line. |
| 1227 | inserts that many newlines." | 1229 | With argument, inserts ARG newlines." |
| 1228 | (interactive "p") | 1230 | (interactive "p") |
| 1229 | (save-excursion | 1231 | (save-excursion |
| 1230 | (let ((start (point))) | 1232 | (let ((start (point))) |
diff --git a/lisp/term/sun-mouse.el b/lisp/term/sun-mouse.el index a6227ea3249..0ed1c3360a8 100644 --- a/lisp/term/sun-mouse.el +++ b/lisp/term/sun-mouse.el | |||
| @@ -642,8 +642,8 @@ CODE values: 13 = Tool-Position, 14 = Size-in-Pixels, 18 = Size-in-Chars." | |||
| 642 | ;;; primative functions are defined in sunfns.c | 642 | ;;; primative functions are defined in sunfns.c |
| 643 | ;;; | 643 | ;;; |
| 644 | (defun sun-yank-selection () | 644 | (defun sun-yank-selection () |
| 645 | "Set mark and yank the contents of the current sunwindows selection | 645 | "Set mark and yank the contents of the current sunwindows selection. |
| 646 | into the current buffer at point." | 646 | Insert contents into the current buffer at point." |
| 647 | (interactive "*") | 647 | (interactive "*") |
| 648 | (set-mark-command nil) | 648 | (set-mark-command nil) |
| 649 | (insert-string (sun-get-selection))) | 649 | (insert-string (sun-get-selection))) |
| @@ -658,7 +658,8 @@ into the current buffer at point." | |||
| 658 | ;;; This closes the window instead of stopping emacs. | 658 | ;;; This closes the window instead of stopping emacs. |
| 659 | ;;; | 659 | ;;; |
| 660 | (defun suspend-emacstool (&optional stuffstring) | 660 | (defun suspend-emacstool (&optional stuffstring) |
| 661 | "If running under as a detached process emacstool, | 661 | "Suspend emacstool. |
| 662 | If running under as a detached process emacstool, | ||
| 662 | you don't want to suspend (there is no way to resume), | 663 | you don't want to suspend (there is no way to resume), |
| 663 | just close the window, and wait for reopening." | 664 | just close the window, and wait for reopening." |
| 664 | (interactive) | 665 | (interactive) |