diff options
| author | Chong Yidong | 2012-05-04 13:14:14 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-05-04 13:14:14 +0800 |
| commit | 78f3273aab4817ead42af0db41e703dc7e90260b (patch) | |
| tree | 71c70a9d0bd5d796e5be009d3cc562ea7a0863b4 /doc/lispref | |
| parent | ab0fa4e4ba0b2b93a9ef007842523d8d5f9eb758 (diff) | |
| download | emacs-78f3273aab4817ead42af0db41e703dc7e90260b.tar.gz emacs-78f3273aab4817ead42af0db41e703dc7e90260b.zip | |
Convert more defvars to defcustoms.
* dos-w32.el (file-name-buffer-file-type-alist)
(direct-print-region-use-command-dot-com):
* ffap.el (ffap-menu-regexp):
* follow.el (follow-debug):
* forms.el (forms--debug):
* iswitchb.el (iswitchb-all-frames):
* ido.el (ido-all-frames):
* mail/feedmail.el (feedmail-mail-send-hook)
(feedmail-mail-send-hook-queued):
* mail/footnote.el (footnote-signature-separator):
* mail/mailabbrev.el (mail-alias-separator-string)
(mail-abbrev-mode-regexp):
* mail/rmail.el (rmail-speedbar-match-folder-regexp):
* progmodes/idlwave.el (idlwave-libinfo-file)
(idlwave-default-completion-case-is-down)
(idlwave-library-routines): Convert defvars to defcustoms.
* mail/rmail.el (rmail-decode-mime-charset):
* progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
(idlwave-shell-fix-inserted-breaks)
(idlwave-shell-activate-alt-keybindings)
(idlwave-shell-use-breakpoint-glyph):
* facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
* doc/lispref/os.texi (Timers): Use defopt for timer-max-repeats.
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/os.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 3be41afe975..8c6165c826f 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-05-04 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * os.texi (Timers): Use defopt for timer-max-repeats. | ||
| 4 | |||
| 1 | 2012-05-03 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2012-05-03 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | * os.texi (Time of Day): Do not limit current-time-string | 7 | * os.texi (Time of Day): Do not limit current-time-string |
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi index 0fdb3e20694..ac6711f4827 100644 --- a/doc/lispref/os.texi +++ b/doc/lispref/os.texi | |||
| @@ -1735,11 +1735,11 @@ between them). If you want a timer to run again no less than @var{n} | |||
| 1735 | seconds after the last invocation, don't use the @var{repeat} argument. | 1735 | seconds after the last invocation, don't use the @var{repeat} argument. |
| 1736 | Instead, the timer function should explicitly reschedule the timer. | 1736 | Instead, the timer function should explicitly reschedule the timer. |
| 1737 | 1737 | ||
| 1738 | @defvar timer-max-repeats | 1738 | @defopt timer-max-repeats |
| 1739 | This variable's value specifies the maximum number of times to repeat | 1739 | This variable's value specifies the maximum number of times to repeat |
| 1740 | calling a timer function in a row, when many previously scheduled | 1740 | calling a timer function in a row, when many previously scheduled |
| 1741 | calls were unavoidably delayed. | 1741 | calls were unavoidably delayed. |
| 1742 | @end defvar | 1742 | @end defopt |
| 1743 | 1743 | ||
| 1744 | @defmac with-timeout (seconds timeout-forms@dots{}) body@dots{} | 1744 | @defmac with-timeout (seconds timeout-forms@dots{}) body@dots{} |
| 1745 | Execute @var{body}, but give up after @var{seconds} seconds. If | 1745 | Execute @var{body}, but give up after @var{seconds} seconds. If |