diff options
| author | Lute Kamstra | 2008-12-03 05:48:14 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2008-12-03 05:48:14 +0000 |
| commit | 9201cc281b10650e96296eda8519403e2b508fbd (patch) | |
| tree | e86a6ba2b3d0044d996036ccf8430908dca34b26 /lisp/autoinsert.el | |
| parent | 1b17adfd3b07d24b4665ff66fd1b1dcc05f6c823 (diff) | |
| download | emacs-9201cc281b10650e96296eda8519403e2b508fbd.tar.gz emacs-9201cc281b10650e96296eda8519403e2b508fbd.zip | |
* align.el:
* allout.el:
* apropos.el:
* arc-mode.el:
* autoinsert.el:
* avoid.el:
* battery.el:
* bookmark.el:
* buff-menu.el:
* calculator.el:
* chistory.el:
* cmuscheme.el:
* comint.el:
* compare-w.el:
* dabbrev.el:
* delim-col.el:
* desktop.el:
* diff-mode.el:
* diff.el:
* dired-aux.el:
* dired-x.el:
* dired.el:
* dos-vars.el:
* ediff-diff.el:
* ediff-help.el:
* ediff-init.el:
* ediff-merg.el:
* ediff-mult.el:
* ediff-ptch.el:
* ediff-vers.el:
* ediff-wind.el:
* ediff.el:
* emerge.el:
* facemenu.el:
* faces.el:
* ffap.el:
* filecache.el:
* find-dired.el:
* font-core.el:
* font-lock.el:
* forms.el:
* fringe.el:
* help-at-pt.el:
* hippie-exp.el:
* ido.el:
* image-file.el:
* imenu.el:
* indent.el:
* info.el:
* isearchb.el:
* iswitchb.el:
* jit-lock.el:
* jka-compr.el:
* log-edit.el:
* lpr.el:
* ls-lisp.el:
* man.el:
* menu-bar.el:
* midnight.el:
* mouse-sel.el:
* mouse.el:
* msb.el:
* outline.el:
* paren.el:
* pcmpl-cvs.el:
* pcmpl-gnu.el:
* pcomplete.el:
* pcvs-info.el:
* pcvs-parse.el:
* printing.el:
* ps-mule.el:
* ps-print.el:
* replace.el:
* ruler-mode.el:
* saveplace.el:
* sb-image.el:
* scroll-bar.el:
* sha1.el:
* shadowfile.el:
* shell.el:
* sort.el:
* speedbar.el:
* strokes.el:
* tempo.el:
* term.el:
* terminal.el:
* time-stamp.el:
* time.el:
* tree-widget.el:
* type-break.el:
* vc-cvs.el:
* vc-hg.el:
* vc-mcvs.el:
* vc-rcs.el:
* vc-sccs.el:
* vc.el:
* view.el:
* w32-vars.el:
* whitespace.el:
* wid-edit.el: Remove leading * from docstrings of defcustoms,
deffaces, defconsts and defuns.
Diffstat (limited to 'lisp/autoinsert.el')
| -rw-r--r-- | lisp/autoinsert.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index fb20a6c5b41..92a5f9f3f92 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el | |||
| @@ -58,7 +58,7 @@ | |||
| 58 | 58 | ||
| 59 | 59 | ||
| 60 | (defcustom auto-insert 'not-modified | 60 | (defcustom auto-insert 'not-modified |
| 61 | "*Controls automatic insertion into newly found empty files. | 61 | "Controls automatic insertion into newly found empty files. |
| 62 | Possible values: | 62 | Possible values: |
| 63 | nil do nothing | 63 | nil do nothing |
| 64 | t insert if possible | 64 | t insert if possible |
| @@ -76,7 +76,7 @@ With \\[auto-insert], this is always treated as if it were t." | |||
| 76 | :group 'auto-insert) | 76 | :group 'auto-insert) |
| 77 | 77 | ||
| 78 | (defcustom auto-insert-query 'function | 78 | (defcustom auto-insert-query 'function |
| 79 | "*Non-nil means ask user before auto-inserting. | 79 | "Non-nil means ask user before auto-inserting. |
| 80 | When this is `function', only ask when called non-interactively." | 80 | When this is `function', only ask when called non-interactively." |
| 81 | :type '(choice (const :tag "Don't ask" nil) | 81 | :type '(choice (const :tag "Don't ask" nil) |
| 82 | (const :tag "Ask if called non-interactively" function) | 82 | (const :tag "Ask if called non-interactively" function) |
| @@ -84,7 +84,7 @@ When this is `function', only ask when called non-interactively." | |||
| 84 | :group 'auto-insert) | 84 | :group 'auto-insert) |
| 85 | 85 | ||
| 86 | (defcustom auto-insert-prompt "Perform %s auto-insertion? " | 86 | (defcustom auto-insert-prompt "Perform %s auto-insertion? " |
| 87 | "*Prompt to use when querying whether to auto-insert. | 87 | "Prompt to use when querying whether to auto-insert. |
| 88 | If this contains a %s, that will be replaced by the matching rule." | 88 | If this contains a %s, that will be replaced by the matching rule." |
| 89 | :type 'string | 89 | :type 'string |
| 90 | :group 'auto-insert) | 90 | :group 'auto-insert) |
| @@ -308,7 +308,7 @@ described above, e.g. [\"header.insert\" date-and-author-update]." | |||
| 308 | 308 | ||
| 309 | ;; Establish a default value for auto-insert-directory | 309 | ;; Establish a default value for auto-insert-directory |
| 310 | (defcustom auto-insert-directory "~/insert/" | 310 | (defcustom auto-insert-directory "~/insert/" |
| 311 | "*Directory from which auto-inserted files are taken. | 311 | "Directory from which auto-inserted files are taken. |
| 312 | The value must be an absolute directory name; | 312 | The value must be an absolute directory name; |
| 313 | thus, on a GNU or Unix system, it must end in a slash." | 313 | thus, on a GNU or Unix system, it must end in a slash." |
| 314 | :type 'directory | 314 | :type 'directory |