diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-11-01 18:52:23 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-11-01 18:58:12 +0100 |
commit | 7baf8cae0f54502fc2b21c01e133308b746cd7a0 (patch) | |
tree | 6160e01a41d715a9de78f31590c31bfa65243d25 /lisp/autoinsert.el | |
parent | 8ad9932f1163506370ee05a0d7a2f2d5d57c0fd1 (diff) | |
download | emacs-7baf8cae0f54502fc2b21c01e133308b746cd7a0.tar.gz emacs-7baf8cae0f54502fc2b21c01e133308b746cd7a0.tar.bz2 emacs-7baf8cae0f54502fc2b21c01e133308b746cd7a0.zip |
Don't auto-insert "@c file ends here" in .texi files
* lisp/autoinsert.el (auto-insert-alist): Don't insert "@c file ends
here" at the end of new .texi files.
Diffstat (limited to 'lisp/autoinsert.el')
-rw-r--r-- | lisp/autoinsert.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 4af3d631a2c..97986683256 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -315,8 +315,7 @@ The document was typeset with @printindex cp @bye - -@c " (file-name-nondirectory (buffer-file-name)) " ends here\n")) +")) "A list specifying text to insert by default into a new file. Elements look like (CONDITION . ACTION) or ((CONDITION . DESCRIPTION) . ACTION). CONDITION may be a regexp that must match the new file's name, or it may be |