branch: master
commit 900eb51c989ce7af80bc1ba7e9b8a66ac35ea99f
Author: Alexey Veretennikov <[email protected]>
Commit: Alexey Veretennikov <[email protected]>
Preparation to move to GNU ELPA.
In order to move to GNU ELPA it is necessary to remove the code
from contributors who were not able/willing to sign FSF papers.
Revert "Added loccur-no-highlight function."
This reverts commit a1e135af6ffd1018ba86e2dd2f3dbc630674a63e.
---
loccur.el | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/loccur.el b/loccur.el
index cb17e80..6dafcda 100644
--- a/loccur.el
+++ b/loccur.el
@@ -286,14 +286,6 @@ containing match"
(forward-line 1))
(setq lines (nreverse lines)))))
-(defun loccur-no-highlight(regex)
- "Displays only the lines matching a given regex with no
-highlithing of any part of the lines."
- (let (old-highlighting)
- (setq old-highlighting loccur-highlight-matching-regexp)
- (setq loccur-highlight-matching-regexp nil)
- (loccur regex)
- (setq loccur-highlight-matching-regexp old-highlighting)))
(provide 'loccur)