diff options
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/eglot.el | 4 | ||||
-rw-r--r-- | lisp/progmodes/flymake.el | 5 | ||||
-rw-r--r-- | lisp/progmodes/gdb-mi.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/verilog-mode.el | 4 |
4 files changed, 8 insertions, 7 deletions
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 1b983e94d79..c5870618372 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -618,7 +618,7 @@ Honour `eglot-strict-mode'." (cl-defmacro eglot--dcase (obj &rest clauses) "Like `pcase', but for the LSP object OBJ. CLAUSES is a list (DESTRUCTURE FORMS...) where DESTRUCTURE is -treated as in `eglot-dbind'." +treated as in `eglot--dbind'." (declare (indent 1) (debug (sexp &rest (sexp &rest form)))) (let ((obj-once (make-symbol "obj-once"))) `(let ((,obj-once ,obj)) @@ -2464,7 +2464,7 @@ may be called multiple times (respecting the protocol of (defun eglot-xref-backend () "Eglot xref backend." 'eglot) (defvar eglot--temp-location-buffers (make-hash-table :test #'equal) - "Helper variable for `eglot--handling-xrefs'.") + "Helper variable for `eglot--collecting-xrefs'.") (defvar eglot-xref-lessp-function #'ignore "Compare two `xref-item' objects for sorting.") diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 5bbbfa822fd..294cf47087c 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -1360,8 +1360,9 @@ default) no filter is applied." flymake-mode-line-warning-counter flymake-mode-line-note-counter "]") "Mode-line construct for formatting Flymake diagnostic counters. -This is a suitable place for placing the `flymake-error-counter', -`flymake-warning-counter' and `flymake-note-counter' constructs. +This is a suitable place for placing the `flymake-mode-line-error-counter', +`flymake-mode-line-warning-counter' and `flymake-mode-line-note-counter' +constructs. Separating each of these with space is not necessary." :type '(repeat (choice string symbol))) diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index 0de3d213a4d..dff677e785f 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el @@ -4359,7 +4359,7 @@ member." "Mapping of local variable names to a string with their value.") (defun gdb-locals-values-handler-custom () - "Store the values of local variables in `gdb-locals-value-map'." + "Store the values of local variables in `gdb-locals-values-table'." (let ((locals-list (bindat-get-field (gdb-mi--partial-output) 'variables))) (dolist (local locals-list) (let ((name (bindat-get-field local 'name)) diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index d6b8edaa365..310a9be4f6e 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el @@ -9630,7 +9630,7 @@ Returns REGEXP and list of ( (signal_name connection_name)... )." (defun verilog-read-auto-template (module) "Look for an auto_template for the instantiation of the given MODULE. -If found returns `verilog-read-auto-template-inside' structure." +If found returns `verilog-read-auto-template-middle' structure." (save-excursion ;; Find beginning (let ((pt (point))) @@ -10024,7 +10024,7 @@ Used for __FLAGS__ in `verilog-expand-command'." (defvar verilog-dir-cache-preserving nil "If true, the directory cache is enabled, and file system changes are ignored. -See `verilog-dir-exists-p' and `verilog-dir-files'.") +See `verilog-dir-file-exists-p' and `verilog-dir-files'.") ;; If adding new cached variable, add also to verilog-preserve-dir-cache (defvar verilog-dir-cache-list nil |