aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorBasil L. Contovounesios2020-07-10 15:22:27 +0100
committerBasil L. Contovounesios2020-07-10 15:22:27 +0100
commit6290850dac130521551913ce78671fcccfe5c0f3 (patch)
tree03e2261caaec9d511d51636aa766306f64e9d9b8 /lisp/progmodes/python.el
parent136e9311896030442735d7527514e3801da09c25 (diff)
downloademacs-6290850dac130521551913ce78671fcccfe5c0f3.tar.gz
emacs-6290850dac130521551913ce78671fcccfe5c0f3.zip
Consistently stylize eldoc as ElDoc in prose
* doc/emacs/custom.texi (Specifying File Variables): * doc/emacs/modes.texi (Major Modes): * doc/emacs/programs.texi (Lisp Doc): * etc/NEWS.22: * etc/NEWS.23: * lisp/progmodes/python.el: (python-eldoc-function): * test/lisp/progmodes/python-tests.el: Consistently capitalize eldoc as ElDoc rather than Eldoc.
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 107b29189f5..785b941402a 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -34,7 +34,7 @@
34;; Implements Syntax highlighting, Indentation, Movement, Shell 34;; Implements Syntax highlighting, Indentation, Movement, Shell
35;; interaction, Shell completion, Shell virtualenv support, Shell 35;; interaction, Shell completion, Shell virtualenv support, Shell
36;; package support, Shell syntax highlighting, Pdb tracking, Symbol 36;; package support, Shell syntax highlighting, Pdb tracking, Symbol
37;; completion, Skeletons, FFAP, Code Check, Eldoc, Imenu. 37;; completion, Skeletons, FFAP, Code Check, ElDoc, Imenu.
38 38
39;; Syntax highlighting: Fontification of code is provided and supports 39;; Syntax highlighting: Fontification of code is provided and supports
40;; python's triple quoted strings properly. 40;; python's triple quoted strings properly.
@@ -216,7 +216,7 @@
216;; Code check: Check the current file for errors with `python-check' 216;; Code check: Check the current file for errors with `python-check'
217;; using the program defined in `python-check-command'. 217;; using the program defined in `python-check-command'.
218 218
219;; Eldoc: returns documentation for object at point by using the 219;; ElDoc: returns documentation for object at point by using the
220;; inferior python subprocess to inspect its documentation. As you 220;; inferior python subprocess to inspect its documentation. As you
221;; might guessed you should run `python-shell-send-buffer' from time 221;; might guessed you should run `python-shell-send-buffer' from time
222;; to time to get better results too. 222;; to time to get better results too.
@@ -4461,7 +4461,7 @@ See `python-check-command' for the default."
4461 (format python-check-buffer-name command))))) 4461 (format python-check-buffer-name command)))))
4462 4462
4463 4463
4464;;; Eldoc 4464;;; ElDoc
4465 4465
4466(defcustom python-eldoc-setup-code 4466(defcustom python-eldoc-setup-code
4467 "def __PYDOC_get_help(obj): 4467 "def __PYDOC_get_help(obj):
@@ -4578,7 +4578,7 @@ fetching."
4578 (with-timeout (python-eldoc-function-timeout 4578 (with-timeout (python-eldoc-function-timeout
4579 (if python-eldoc-function-timeout-permanent 4579 (if python-eldoc-function-timeout-permanent
4580 (progn 4580 (progn
4581 (message "Eldoc echo-area display muted in this buffer, see `python-eldoc-function'") 4581 (message "ElDoc echo-area display muted in this buffer, see `python-eldoc-function'")
4582 (setq python-eldoc-get-doc nil)) 4582 (setq python-eldoc-get-doc nil))
4583 (message "`python-eldoc-function' timed out, see `python-eldoc-function-timeout'"))) 4583 (message "`python-eldoc-function' timed out, see `python-eldoc-function-timeout'")))
4584 (python-eldoc--get-doc-at-point)))) 4584 (python-eldoc--get-doc-at-point))))