diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-28 20:32:03 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-28 20:32:39 -0700 |
commit | ff441d3508add9eed3c5217ae7b0a8800b9fc917 (patch) | |
tree | 7cb511c46c115ef734e563d29ebf058e54838a70 /lisp/woman.el | |
parent | c6af816affb36d512f806725518e6e5f2353b197 (diff) | |
download | emacs-ff441d3508add9eed3c5217ae7b0a8800b9fc917.tar.gz |
Fix minor text quoting problems in lisp top level
* lisp/apropos.el (apropos-describe-plist):
* lisp/cus-theme.el (customize-themes):
* lisp/dired.el (dired-log):
* lisp/help-fns.el (describe-variable):
* lisp/hexl.el (hexl-insert-multibyte-char):
* lisp/info.el (Info-finder-find-node):
* lisp/json.el (json-read-string):
* lisp/novice.el (disabled-command-function)
(disabled-command-function):
* lisp/startup.el (normal-mouse-startup-screen):
* lisp/woman.el (WoMan-log, WoMan-warn):
Respect text quoting style in doc string or diagnostic.
* lisp/replace.el (replace-character-fold):
* src/syntax.c (Fmodify_syntax_entry):
Escape an apostrophe in a docstring.
* lisp/tempo.el (tempo-define-template):
Remove confusing apostrophe from docstring.
* lisp/whitespace.el (whitespace-mark-x):
Use directed quotes in docstring.
Diffstat (limited to 'lisp/woman.el')
-rw-r--r-- | lisp/woman.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/woman.el b/lisp/woman.el index e903caaea30..de2cbc100ea 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -4548,11 +4548,11 @@ Format paragraphs upto TO." (defun WoMan-log (format &rest args) "Log a message out of FORMAT control string and optional ARGS." - (WoMan-log-1 (apply 'format format args))) + (WoMan-log-1 (apply #'format-message format args))) (defun WoMan-warn (format &rest args) "Log a warning message out of FORMAT control string and optional ARGS." - (setq format (apply 'format format args)) + (setq format (apply #'format-message format args)) (WoMan-log-1 (concat "** " format))) ;; request is not used dynamically by any callees. |