diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2024-11-03 07:22:20 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2024-11-03 16:27:16 +0100 |
commit | 378661dcd6d49e16f653d3eb6b676f0bcea0923b (patch) | |
tree | 0ea2a5f0cff5bee916b46e3c67a900cab53b82c9 | |
parent | 53f0151518c767bb97dc90fea63efb37d8311dd2 (diff) | |
download | emacs-378661dcd6d49e16f653d3eb6b676f0bcea0923b.tar.gz emacs-378661dcd6d49e16f653d3eb6b676f0bcea0923b.tar.bz2 emacs-378661dcd6d49e16f653d3eb6b676f0bcea0923b.zip |
; Whitespace fix in idlwave.el
-rw-r--r-- | lisp/progmodes/idlwave.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index b3e9eb58196..02d1dacd89a 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el @@ -3900,7 +3900,7 @@ you specify /." "sh" nil errbuf nil "-c" (concat cmd append item))) 0 - 1))) + 1))) ;; ;; Append additional tags (setq append " --append ") @@ -4610,7 +4610,7 @@ Gets set in cached XML rinfo, or `idlw-rinfo.el'.") (if (setq master-elt (assoc master-link linkfiles)) (if (eq (car linkfiles) master-elt) linkfiles - (cons master-elt (delq master-elt linkfiles))) + (cons master-elt (delq master-elt linkfiles))) (push (list master-link) linkfiles)))) (defun idlwave-convert-xml-clean-statement-aliases (aliases) @@ -6326,7 +6326,7 @@ ARROW: Location of the arrow" (idlwave-routines) (let* (;(bos (save-excursion (idlwave-beginning-of-statement) (point))) (bos (save-excursion (idlwave-start-of-substatement 'pre) (point))) - (func-entry (idlwave-what-function bos)) + (func-entry (idlwave-what-function bos)) (func (car func-entry)) (func-class (nth 1 func-entry)) (func-arrow (nth 2 func-entry)) |