+2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
+
+ * progmodes/python.el (python-shell-send-string):
+ (python-shell-send-string-no-output): Fix docstring (Bug#16547).
+
2014-02-04 Anders Lindgren <andlind@gmail.com>
* emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
temp-file-name))
(defun python-shell-send-string (string &optional process)
- "Send STRING to inferior Python PROCESS.
-When MSG is non-nil messages the first line of STRING."
+ "Send STRING to inferior Python PROCESS."
(interactive "sPython command: ")
(let ((process (or process (python-shell-get-or-create-process))))
(if (string-match ".\n+." string) ;Multiline.
(defun python-shell-send-string-no-output (string &optional process)
"Send STRING to PROCESS and inhibit output.
-When MSG is non-nil messages the first line of STRING. Return
-the output."
+Return the output."
(let ((process (or process (python-shell-get-or-create-process)))
(comint-preoutput-filter-functions
'(python-shell-output-filter))