diff options
| author | Richard M. Stallman | 2002-04-30 16:36:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-30 16:36:02 +0000 |
| commit | 87810ca9dfafe65ea5051df5569a379a8bda4647 (patch) | |
| tree | 4e34adec9f917ce983780fc1a81eaf49cbe0c2b7 | |
| parent | bed8e829ec3d214d16a41462147275a180dfeb13 (diff) | |
| download | emacs-87810ca9dfafe65ea5051df5569a379a8bda4647.tar.gz emacs-87810ca9dfafe65ea5051df5569a379a8bda4647.zip | |
(auto-insert-directory): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/autoinsert.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 132bb45cb81..2cc914c0235 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2002-04-30 Richard M. Stallman <rms@gnu.org> | 1 | 2002-04-30 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * autoinsert.el (auto-insert-directory): Doc fix. | ||
| 4 | |||
| 5 | * facemenu.el (describe-text-at and stuff): Moved to descr-text.el. | ||
| 6 | |||
| 7 | * descr-text.el: New file, broken out of facemenu.el. | ||
| 8 | |||
| 3 | * emacs-lisp/advice.el (documentation): Add ad-define-subr-args call. | 9 | * emacs-lisp/advice.el (documentation): Add ad-define-subr-args call. |
| 4 | 10 | ||
| 5 | 2002-04-29 Richard M. Stallman <rms@gnu.org> | 11 | 2002-04-29 Richard M. Stallman <rms@gnu.org> |
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index b4c6418dfeb..ffac45d746a 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el | |||
| @@ -200,8 +200,8 @@ described above, e.g. [\"header.insert\" date-and-author-update]." | |||
| 200 | ;; Establish a default value for auto-insert-directory | 200 | ;; Establish a default value for auto-insert-directory |
| 201 | (defcustom auto-insert-directory "~/insert/" | 201 | (defcustom auto-insert-directory "~/insert/" |
| 202 | "*Directory from which auto-inserted files are taken. | 202 | "*Directory from which auto-inserted files are taken. |
| 203 | Must be a fully-qualified directory name, e.g., on a Unix-like system, | 203 | The value must be an absolute directory name; |
| 204 | must end in a slash." | 204 | thus, on a GNU or Unix system, it must end in a slash." |
| 205 | :type 'directory | 205 | :type 'directory |
| 206 | :group 'auto-insert) | 206 | :group 'auto-insert) |
| 207 | 207 | ||