diff options
| author | Glenn Morris | 2021-01-22 08:52:12 +0000 |
|---|---|---|
| committer | Glenn Morris | 2021-01-22 08:52:12 +0000 |
| commit | 6bfc672bc7f467edf39cfba262c5c4f11897d4e0 (patch) | |
| tree | 830a689e07aa3fe1ba2870695056480cb3820df4 /lisp/textmodes | |
| parent | 90bd6d8ba66bde8d9626f3dd05d14372734e6ce5 (diff) | |
| download | emacs-6bfc672bc7f467edf39cfba262c5c4f11897d4e0.tar.gz emacs-6bfc672bc7f467edf39cfba262c5c4f11897d4e0.zip | |
* lisp/textmodes/remember.el (remember-text-format-function): Fix type.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/remember.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/remember.el b/lisp/textmodes/remember.el index 811a265118c..820ee38d101 100644 --- a/lisp/textmodes/remember.el +++ b/lisp/textmodes/remember.el | |||
| @@ -415,7 +415,7 @@ The default emulates `current-time-string' for backward compatibility." | |||
| 415 | "The function to format the remembered text. | 415 | "The function to format the remembered text. |
| 416 | The function receives the remembered text as argument and should | 416 | The function receives the remembered text as argument and should |
| 417 | return the text to be remembered." | 417 | return the text to be remembered." |
| 418 | :type 'function | 418 | :type '(choice (const nil) function) |
| 419 | :group 'remember | 419 | :group 'remember |
| 420 | :version "28.1") | 420 | :version "28.1") |
| 421 | 421 | ||