diff options
| author | Juanma Barranquero | 2005-07-04 09:42:58 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-07-04 09:42:58 +0000 |
| commit | c6c5714e40cdc2aad0959aaee899d1e5e8dfe3e6 (patch) | |
| tree | cdee8700a13e86c291d50d9ada70681645d985d4 | |
| parent | db90d22569ef971a3afa3a3f7703d4a6ea476e16 (diff) | |
| download | emacs-c6c5714e40cdc2aad0959aaee899d1e5e8dfe3e6.tar.gz emacs-c6c5714e40cdc2aad0959aaee899d1e5e8dfe3e6.zip | |
(prolog-eof-string): Doc fixes.
(prolog-indent-level): Fix typo in docstring.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/prolog.el | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2c566f3fb1f..91befc8b3f7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -35,6 +35,12 @@ | |||
| 35 | 35 | ||
| 36 | 2005-07-04 Juanma Barranquero <lekktu@gmail.com> | 36 | 2005-07-04 Juanma Barranquero <lekktu@gmail.com> |
| 37 | 37 | ||
| 38 | * progmodes/prolog.el (prolog-eof-string): Doc fixes. | ||
| 39 | (prolog-indent-level): Fix typo in docstring. | ||
| 40 | |||
| 41 | * info.el (Info-history, Info-history-forward) | ||
| 42 | (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes. | ||
| 43 | |||
| 38 | * add-log.el (add-change-log-entry): | 44 | * add-log.el (add-change-log-entry): |
| 39 | * comint.el (comint-dynamic-list-input-ring) | 45 | * comint.el (comint-dynamic-list-input-ring) |
| 40 | (comint-dynamic-list-completions): | 46 | (comint-dynamic-list-completions): |
diff --git a/lisp/progmodes/prolog.el b/lisp/progmodes/prolog.el index b6c4dd8c662..9e392547597 100644 --- a/lisp/progmodes/prolog.el +++ b/lisp/progmodes/prolog.el | |||
| @@ -56,8 +56,8 @@ | |||
| 56 | :group 'prolog) | 56 | :group 'prolog) |
| 57 | 57 | ||
| 58 | (defcustom prolog-eof-string "end_of_file.\n" | 58 | (defcustom prolog-eof-string "end_of_file.\n" |
| 59 | "*String that represents end of file for prolog. | 59 | "*String that represents end of file for Prolog. |
| 60 | nil means send actual operating system end of file." | 60 | When nil, send actual operating system end of file." |
| 61 | :type 'string | 61 | :type 'string |
| 62 | :group 'prolog) | 62 | :group 'prolog) |
| 63 | 63 | ||
| @@ -158,7 +158,7 @@ rigidly along with this one (not yet)." | |||
| 158 | )) | 158 | )) |
| 159 | 159 | ||
| 160 | (defun prolog-indent-level () | 160 | (defun prolog-indent-level () |
| 161 | "Compute prolog indentation level." | 161 | "Compute Prolog indentation level." |
| 162 | (save-excursion | 162 | (save-excursion |
| 163 | (beginning-of-line) | 163 | (beginning-of-line) |
| 164 | (skip-chars-forward " \t") | 164 | (skip-chars-forward " \t") |