diff options
| author | Chong Yidong | 2012-04-09 21:05:48 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-04-09 21:05:48 +0800 |
| commit | fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5 (patch) | |
| tree | eba43d1fa2427a77f1f6b1468838426b33ea5973 /lisp/completion.el | |
| parent | a18ecafa99e7e7c3caa35ed68dd8a7b9b5d2b8e3 (diff) | |
| download | emacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.tar.gz emacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.zip | |
Remove * characters from the front of variable docstrings.
Diffstat (limited to 'lisp/completion.el')
| -rw-r--r-- | lisp/completion.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/completion.el b/lisp/completion.el index ceb272fad6d..9c6cd60c96c 100644 --- a/lisp/completion.el +++ b/lisp/completion.el | |||
| @@ -344,18 +344,18 @@ are automatically added to the completion database." | |||
| 344 | :group 'completion) | 344 | :group 'completion) |
| 345 | 345 | ||
| 346 | ;;(defvar *record-cmpl-statistics-p* nil | 346 | ;;(defvar *record-cmpl-statistics-p* nil |
| 347 | ;; "*If non-nil, record completion statistics.") | 347 | ;; "If non-nil, record completion statistics.") |
| 348 | 348 | ||
| 349 | ;;(defvar *completion-auto-save-period* 1800 | 349 | ;;(defvar *completion-auto-save-period* 1800 |
| 350 | ;; "*The period in seconds to wait for emacs to be idle before autosaving | 350 | ;; "The period in seconds to wait for emacs to be idle before autosaving |
| 351 | ;;the completions. Default is a 1/2 hour.") | 351 | ;;the completions. Default is a 1/2 hour.") |
| 352 | 352 | ||
| 353 | (defvar completion-min-length 6 | 353 | (defvar completion-min-length 6 |
| 354 | "*The minimum length of a stored completion. | 354 | "The minimum length of a stored completion. |
| 355 | DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.") | 355 | DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.") |
| 356 | 356 | ||
| 357 | (defvar completion-max-length 200 | 357 | (defvar completion-max-length 200 |
| 358 | "*The maximum length of a stored completion. | 358 | "The maximum length of a stored completion. |
| 359 | DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.") | 359 | DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.") |
| 360 | 360 | ||
| 361 | (defvar completion-prefix-min-length 3 | 361 | (defvar completion-prefix-min-length 3 |