diff options
| author | Eli Zaretskii | 2006-10-07 11:03:00 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-10-07 11:03:00 +0000 |
| commit | 2a575769802b064b083ed41f6a2fa4130e813ebb (patch) | |
| tree | 0050dae273facdd21dcb8d85d11d943d0ff37347 | |
| parent | d3886822054abef2c356b5e065077caccb0bc874 (diff) | |
| download | emacs-2a575769802b064b083ed41f6a2fa4130e813ebb.tar.gz emacs-2a575769802b064b083ed41f6a2fa4130e813ebb.zip | |
(auto-insert-alist): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/autoinsert.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3129bef0855..5deb6f38f68 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-10-07 Magnus Henoch <mange@freemail.hu> | ||
| 2 | |||
| 3 | * autoinsert.el (auto-insert-alist): Doc fix. | ||
| 4 | |||
| 1 | 2006-10-07 Johan Bockg,be(Brd <bojohan@dd.chalmers.se> | 5 | 2006-10-07 Johan Bockg,be(Brd <bojohan@dd.chalmers.se> |
| 2 | 6 | ||
| 3 | * mouse-sel.el (mouse-insert-selection-internal): Use | 7 | * mouse-sel.el (mouse-insert-selection-internal): Use |
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index c1a2047a9c6..15a7461d288 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el | |||
| @@ -215,7 +215,7 @@ If this contains a %s, that will be replaced by the matching rule." | |||
| 215 | ;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")) | 215 | ;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")) |
| 216 | "A list specifying text to insert by default into a new file. | 216 | "A list specifying text to insert by default into a new file. |
| 217 | Elements look like (CONDITION . ACTION) or ((CONDITION . DESCRIPTION) . ACTION). | 217 | Elements look like (CONDITION . ACTION) or ((CONDITION . DESCRIPTION) . ACTION). |
| 218 | CONDITION maybe a regexp that must match the new file's name, or it may be | 218 | CONDITION may be a regexp that must match the new file's name, or it may be |
| 219 | a symbol that must match the major mode for this element to apply. | 219 | a symbol that must match the major mode for this element to apply. |
| 220 | Only the first matching element is effective. | 220 | Only the first matching element is effective. |
| 221 | Optional DESCRIPTION is a string for filling `auto-insert-prompt'. | 221 | Optional DESCRIPTION is a string for filling `auto-insert-prompt'. |