diff options
| -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") |