diff options
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/help.el b/lisp/help.el index db87d5852b6..2fcb52e2e25 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -964,9 +964,8 @@ documentation for the major and minor modes of that buffer." (let* ((mode major-mode) (file-name (find-lisp-object-file-name mode nil))) (when file-name - (princ (concat (substitute-command-keys " defined in ā") - (file-name-nondirectory file-name) - (substitute-command-keys "ā"))) + (princ (format-message " defined in ā%sā" + (file-name-nondirectory file-name))) ;; Make a hyperlink to the library. (with-current-buffer standard-output (save-excursion |