branch: externals/idlwave
commit 5a8c9cb8ec8e279bdf0a9336d3ecc023a06e1feb
Author: JD Smith <[email protected]>
Commit: JD Smith <[email protected]>
find-structure-definition: Correctly indicate structure found.
---
idlwave.el | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/idlwave.el b/idlwave.el
index 77766ce5e4..6bc00ecb7a 100644
--- a/idlwave.el
+++ b/idlwave.el
@@ -7398,7 +7398,8 @@ backward."
(and (not (eq bound 'back)) (re-search-forward re lim t)))
(progn
(goto-char (match-beginning 3))
- (match-string-no-properties 5)))))
+ (if name (match-string-no-properties 4)
+ t)))))
(defvar idlwave-class-info nil)
(defvar idlwave-class-reset nil) ; to reset buffer-local classes
@@ -9397,8 +9398,6 @@ This function was written since `list-abbrevs' looks
terrible for IDLWAVE mode."
;; Run the hook
(run-hooks 'idlwave-load-hook)
-
(provide 'idlwave)
-;; arch-tag: f77f3b0c-c37c-424f-a328-0886fd42b6fb
;;; idlwave.el ends here