summaryrefslogtreecommitdiff
path: root/lisp/progmodes/octave.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-04-01 16:24:12 +0200
committerStefan Kangas <stefan@marxist.se>2021-04-01 16:26:44 +0200
commit4a538c4861370d629920b66a7cdcbb78ecb13830 (patch)
tree6a62e7ed5c1def94ae207defff5f2eab280e2769 /lisp/progmodes/octave.el
parent8129998deb54c3621dd715c79694725c74630e67 (diff)
downloademacs-4a538c4861370d629920b66a7cdcbb78ecb13830.tar.gz
emacs-4a538c4861370d629920b66a7cdcbb78ecb13830.tar.bz2
emacs-4a538c4861370d629920b66a7cdcbb78ecb13830.zip
Remove redundant #' before lambda in progmodes/*.el
* lisp/progmodes/cc-styles.el (c-set-offset): * lisp/progmodes/ebnf-yac.el (ebnf-yac-token-table): * lisp/progmodes/ebnf2ps.el (ebnf-format-float, ebnf-map-name): * lisp/progmodes/grep.el (lgrep, rgrep-default-command): * lisp/progmodes/inf-lisp.el: * lisp/progmodes/octave.el (octave-lookfor): * lisp/progmodes/python.el (python-pdbtrack-tracking-finish): Remove redundant #' before lambda.
Diffstat (limited to 'lisp/progmodes/octave.el')
-rw-r--r--lisp/progmodes/octave.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el
index 196f2de3440..a1a5192ee1f 100644
--- a/lisp/progmodes/octave.el
+++ b/lisp/progmodes/octave.el
@@ -1769,8 +1769,8 @@ sentence."
(insert "\nRetry with ")
(insert-text-button "'-all'"
'follow-link t
- 'action #'(lambda (_b)
- (octave-lookfor str '-all)))
+ 'action (lambda (_b)
+ (octave-lookfor str '-all)))
(insert ".\n"))
(octave-help-mode)))))