diff options
| author | Juanma Barranquero | 2008-05-29 09:40:37 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-05-29 09:40:37 +0000 |
| commit | b1d4664a5ffab778720cdf938808bcc142006425 (patch) | |
| tree | 9ac50c89ad51ade9c98dc138e878a90d654988bb | |
| parent | 71ce5fd0c9f52882241bef4424042310440b2e93 (diff) | |
| download | emacs-b1d4664a5ffab778720cdf938808bcc142006425.tar.gz emacs-b1d4664a5ffab778720cdf938808bcc142006425.zip | |
(auto-insert): Add :link.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/autoinsert.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a0b16ac7e17..925eeb7af09 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-05-29 David Kastrup <dak@gnu.org> | ||
| 2 | |||
| 3 | * autoinsert.el (auto-insert): Add :link. | ||
| 4 | |||
| 1 | 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * tar-mode.el (tar-header): New field `header-start'. | 7 | * tar-mode.el (tar-header): New field `header-start'. |
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 6d8cd48df50..c01999a7b8c 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el | |||
| @@ -53,7 +53,8 @@ | |||
| 53 | "Automatic mode-dependent insertion of text into new files." | 53 | "Automatic mode-dependent insertion of text into new files." |
| 54 | :prefix "auto-insert-" | 54 | :prefix "auto-insert-" |
| 55 | :group 'files | 55 | :group 'files |
| 56 | :group 'convenience) | 56 | :group 'convenience |
| 57 | :link '(custom-manual "(autotype) Autoinserting")) | ||
| 57 | 58 | ||
| 58 | 59 | ||
| 59 | (defcustom auto-insert 'not-modified | 60 | (defcustom auto-insert 'not-modified |