diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-11-03 14:38:58 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-11-04 19:50:44 +0100 |
commit | 3bec99910b5c7a3eea014409650a5ae0c2c9f6b2 (patch) | |
tree | 83b282220752f476c1d306418b00aad8871edb2e | |
parent | Delete XEmacs 21.4 compatibility code (diff) | |
download | ebuild-mode-3bec99910b5c7a3eea014409650a5ae0c2c9f6b2.tar.gz ebuild-mode-3bec99910b5c7a3eea014409650a5ae0c2c9f6b2.tar.bz2 ebuild-mode-3bec99910b5c7a3eea014409650a5ae0c2c9f6b2.zip |
Fix a typo
* ebuild-mode.el (ebuild-run-command-*): Doc fix.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | ebuild-mode.el | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2024-11-03 Ulrich Müller <ulm@gentoo.org> + * ebuild-mode.el (ebuild-run-command-*): Doc fix. + * ebuild-mode.el (ebuild-mode-get-completion-function): (ebuild-mode-get-keywords, ebuild-mode-unescape-string): * test/ebuild-mode-tests.el (ebuild-mode-test-unescape-string): diff --git a/ebuild-mode.el b/ebuild-mode.el index b6744c6..c1f8323 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -462,7 +462,7 @@ If nil, `compilation-mode' will be used.") `(lambda (&optional clean) ,(format "Run ebuild \"%s\" command, with output to a compilation buffer. -With prefix argument CLEAN, run the \"clean\" command first" +With prefix argument CLEAN, run the \"clean\" command first." command) (interactive "P") (ebuild-run-command (concat (if clean "clean ") ,command))))) |