summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2024-11-03 14:38:58 +0100
committerUlrich Müller <ulm@gentoo.org>2024-11-04 19:50:44 +0100
commit3bec99910b5c7a3eea014409650a5ae0c2c9f6b2 (patch)
tree83b282220752f476c1d306418b00aad8871edb2e
parentDelete XEmacs 21.4 compatibility code (diff)
downloadebuild-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--ChangeLog2
-rw-r--r--ebuild-mode.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fb7fa99..c502b69 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)))))