]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/simple.el (async-shell-command): Add commentary about 3rd arg.
authorEli Zaretskii <eliz@gnu.org>
Thu, 18 May 2023 11:03:10 +0000 (14:03 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 18 May 2023 11:03:10 +0000 (14:03 +0300)
lisp/simple.el

index 0138556787b35bee158ca9c53853d4457e72bcd1..3f88fcb8d03d0595a20bece120f091eee8cff843 100644 (file)
@@ -4454,6 +4454,10 @@ whose `car' is BUFFER."
                           '(nil (inhibit-switch-frame . t)))))
                 (set-window-point win pos)))))))))
 
+;; Implementation note: the next function intentionally tries to use
+;; the same signature as 'shell-command', although the 3rd arg is
+;; currently ignored, to allow us to implement support for specifying
+;; ERROR-BUFFER in the future.
 (defun async-shell-command (command &optional output-buffer error-buffer)
   "Execute string COMMAND asynchronously in background.