emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/hyperbole 56cd3d8791 4/4: Use find-tag--default from et


From: ELPA Syncer
Subject: [elpa] externals/hyperbole 56cd3d8791 4/4: Use find-tag--default from etags (#162)
Date: Sat, 5 Feb 2022 17:57:34 -0500 (EST)

branch: externals/hyperbole
commit 56cd3d8791b9ee71aa64f27d07938b203ed75395
Author: Mats Lidell <mats.lidell@lidells.se>
Commit: GitHub <noreply@github.com>

    Use find-tag--default from etags (#162)
---
 ChangeLog |  7 ++++++-
 hargs.el  | 35 ++---------------------------------
 2 files changed, 8 insertions(+), 34 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 2aeab08ffa..ac83571698 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-02-05  Mats Lidell  <matsl@gnu.org>
+
+* hargs.el (hargs:find-tag-default): Remove own implementation for
+    find-tag-default and find-tag--default and rely on implementation in
+    Emacs.
+
 2022-02-05  Bob Weiner  <rsw@gnu.org>
 
 * kotl/kexport.el (kexport:buffer): Rename to 'kexport:koutline'.
@@ -38,7 +44,6 @@
 
 * hsmail.el (mail-yank-original): Fix indentation of this overloaded function.
             (message--yank-original-internal): Add overloading of this 
function.
-
 2022-02-04  Mats Lidell  <matsl@gnu.org>
 
 * test/hargs-tests.el (hargs-get-verify-extension-characters)
diff --git a/hargs.el b/hargs.el
index 595cb84a10..b95a5e17a7 100644
--- a/hargs.el
+++ b/hargs.el
@@ -29,6 +29,7 @@
 (require 'hpath)
 (require 'hypb)
 (require 'set)
+(require 'etags)                        ;For `find-tag--default'
 
 ;;; ************************************************************************
 ;;; Public variables
@@ -47,39 +48,7 @@
 ;;; Private functions
 ;;; ************************************************************************
 
-;;; From etags.el, so don't have to load the whole thing.
-(unless (fboundp 'find-tag-default)
-  (defun find-tag-default ()
-    (or (and (boundp 'find-tag-default-hook)
-            (not (memq find-tag-default-hook '(nil find-tag-default)))
-            (condition-case data
-                (funcall find-tag-default-hook)
-              (error
-               (message "value of find-tag-default-hook signalled error: %s"
-                        data)
-               (sit-for 1)
-               nil)))
-       (save-excursion
-         (unless (memq (char-syntax (preceding-char)) '(?w ?_))
-           (while (not (looking-at "\\sw\\|\\s_\\|\\'"))
-             (forward-char 1)))
-         (while (looking-at "\\sw\\|\\s_")
-           (forward-char 1))
-         (when (re-search-backward "\\sw\\|\\s_" nil t)
-           (forward-char 1)
-           (regexp-quote (buffer-substring (point)
-                                           (progn (forward-sexp -1)
-                                                  (while (looking-at "\\s'")
-                                                    (forward-char 1))
-                                                  (point)))))))))
-
-(unless (fboundp 'find-tag--default)
-  (defun find-tag--default ()
-    (funcall (or (when (fboundp find-tag-default-function) 
find-tag-default-function)
-                (get major-mode 'find-tag-default-function)
-                'find-tag-default))))
-(defalias 'hargs:find-tag-default 'find-tag--default)
-
+(defalias 'hargs:find-tag-default #'find-tag--default)
 
 (defun hargs:action-get (action modifying)
   "Interactively get list of arguments for ACTION's parameters.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]