aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-09-27 11:55:06 +0000
committerJuanma Barranquero2007-09-27 11:55:06 +0000
commit2092ac41d6f0b0ea33f0d321a537d9c1800894fd (patch)
tree5db74b393be61a6b7d2177ff233ba8bc5b3e79e2
parent6d16ced903fe077b8ad9870cdf9ec050a4ec17b7 (diff)
downloademacs-2092ac41d6f0b0ea33f0d321a537d9c1800894fd.tar.gz
emacs-2092ac41d6f0b0ea33f0d321a537d9c1800894fd.zip
(python-eldoc-function): Doc fix.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/progmodes/python.el2
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 76513d4f701..babc7ac209d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,4 +1,8 @@
12007-09-26 Glenn Morris <rgm@gnu.org> 12007-09-27 Juanma Barranquero <lekktu@gmail.com>
2
3 * progmodes/python.el (python-eldoc-function): Doc fix.
4
52007-09-27 Glenn Morris <rgm@gnu.org>
2 6
3 * image.el (image-type-auto-detected-p): Doc fix. Don't detect an 7 * image.el (image-type-auto-detected-p): Doc fix. Don't detect an
4 image if it is not in image-type-auto-detectable, or is there with 8 image if it is not in image-type-auto-detectable, or is there with
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 8929616ef79..46d78c8793f 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1620,7 +1620,7 @@ The result is what follows `_emacs_out' in the output."
1620;; Fixme: Is there anything reasonable we can do with random methods? 1620;; Fixme: Is there anything reasonable we can do with random methods?
1621;; (Currently only works with functions.) 1621;; (Currently only works with functions.)
1622(defun python-eldoc-function () 1622(defun python-eldoc-function ()
1623 "`eldoc-print-current-symbol-info' for Python. 1623 "`eldoc-documentation-function' for Python.
1624Only works when point is in a function name, not its arg list, for 1624Only works when point is in a function name, not its arg list, for
1625instance. Assumes an inferior Python is running." 1625instance. Assumes an inferior Python is running."
1626 (let ((symbol (with-syntax-table python-dotty-syntax-table 1626 (let ((symbol (with-syntax-table python-dotty-syntax-table