1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

* lisp/textmodes/remember.el (remember-text-format-function): Fix type.

This commit is contained in:
Glenn Morris 2021-01-22 08:52:12 +00:00
parent 90bd6d8ba6
commit 6bfc672bc7

View file

@ -415,7 +415,7 @@ The default emulates `current-time-string' for backward compatibility."
"The function to format the remembered text.
The function receives the remembered text as argument and should
return the text to be remembered."
:type 'function
:type '(choice (const nil) function)
:group 'remember
:version "28.1")