diff options
| author | Pierre Courtieu | 2014-12-09 12:27:39 +0000 |
|---|---|---|
| committer | Pierre Courtieu | 2014-12-09 12:27:39 +0000 |
| commit | dbe7dde0311670da5a2bf21b253d04264a758e30 (patch) | |
| tree | 52cc261bbd66dd2864e4c92505e722b1eec87d3a | |
| parent | 3bd1b0b9301322f89057deb9eccd746b075b1694 (diff) | |
make name filtering of searchabout more precise.
| -rw-r--r-- | coq/coq.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -777,7 +777,7 @@ More precisely it executes SETCMD, then DO id and finally silently UNSETCMD." (concat "[ " s " ]")) (defsubst coq-put-into-brackets-remove-useless (s) - (concat "[ " s " -\"ind\" - \"rect\" -\"rec\" ]")) + (concat "[ " s " -\"_ind\" - \"_rect\" -\"_rec\" ]")) (defsubst coq-put-into-quotes (s) (concat "\"" s "\"")) @@ -817,7 +817,7 @@ This is specific to `coq-mode'." (coq-ask-do "SearchAbout (ex: \"eq_\" eq -bool)" "SearchAbout" nil 'coq-put-into-brackets-remove-useless) - (message "use `coq-SearchAbout-all' to see constants ending with \"ind\", \"rec\", etc")) + (message "use `coq-SearchAbout-all' to see constants ending with \"_ind\", \"_rec\", etc")) (defun coq-SearchAbout-all () (interactive) |
