]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve documentation of a recent commit
authorEli Zaretskii <eliz@gnu.org>
Sun, 14 Apr 2019 14:50:12 +0000 (17:50 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 14 Apr 2019 14:50:12 +0000 (17:50 +0300)
* etc/NEWS: Fix the description of 'shell-command-width'.
Mark the entry as not needing the manual update.

* lisp/simple.el (shell-command-width): Doc fix.  (Bug#35055)

etc/NEWS
lisp/simple.el

index d34fb3bb12a1fac39ccba9b1c561fcf7cc4d9d89..2421b781527d99acc3be899c0b4c17e32a909565 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1066,8 +1066,9 @@ variable for remote shells.  It still defaults to "/bin/sh".
 
 ** Single shell commands
 
-*** 'shell-command-width' defines the number of output columns
-for asynchronous shell command.
+---
+*** 'shell-command-width' defines the number of display columns
+available for output of asynchronous shell commands.
 
 ** Pcomplete
 
index 017ba5100075fe21fc9eb8dd660f1bf0ba6dc0aa..8647d0985f50278a4836586259a7fe90ec0b6f38 100644 (file)
@@ -3352,9 +3352,10 @@ is output."
   :version "26.1")
 
 (defcustom shell-command-width nil
-  "Number of columns available for asynchronous shell command output.
+  "Number of display columns available for asynchronous shell command output.
 If nil, use the shell default number (usually 80 columns).
-If a positive integer, use a fixed width for command output."
+If a positive integer, tell the shell to use that number of columns for
+command output."
   :type '(choice (const :tag "Use system limit" nil)
                  (integer :tag "Fixed width" :value 80))
   :group 'shell