emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116264: * progmodes/python.el (python-shell-send-st


From: Fabián Ezequiel Gallina
Subject: [Emacs-diffs] trunk r116264: * progmodes/python.el (python-shell-send-string):
Date: Tue, 04 Feb 2014 19:36:32 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116264
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/16547
committer: Fabián Ezequiel Gallina <address@hidden>
branch nick: trunk
timestamp: Tue 2014-02-04 16:35:52 -0300
message:
  * progmodes/python.el (python-shell-send-string):
  (python-shell-send-string-no-output): Fix docstring.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/progmodes/python.el       python.el-20091113204419-o5vbwnq5f7feedwu-3008
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-02-04 17:37:08 +0000
+++ b/lisp/ChangeLog    2014-02-04 19:35:52 +0000
@@ -1,3 +1,8 @@
+2014-02-04  Fabián Ezequiel Gallina  <address@hidden>
+
+       * progmodes/python.el (python-shell-send-string):
+       (python-shell-send-string-no-output): Fix docstring (Bug#16547).
+
 2014-02-04  Anders Lindgren  <address@hidden>
 
        * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in

=== modified file 'lisp/progmodes/python.el'
--- a/lisp/progmodes/python.el  2014-01-01 07:43:34 +0000
+++ b/lisp/progmodes/python.el  2014-02-04 19:35:52 +0000
@@ -2118,8 +2118,7 @@
     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.
@@ -2168,8 +2167,7 @@
 
 (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))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]