[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] scratch/hyperbole bfe7ef167d 02/15: * hversion.el (hyperb:path-be
From: |
Stefan Monnier |
Subject: |
[elpa] scratch/hyperbole bfe7ef167d 02/15: * hversion.el (hyperb:path-being-loaded): Delete function |
Date: |
Tue, 2 May 2023 00:26:05 -0400 (EDT) |
branch: scratch/hyperbole
commit bfe7ef167de6371e12c7466671389d56ba77f928
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
* hversion.el (hyperb:path-being-loaded): Delete function
* hload-path.el (hyperb:dir): Don't use it as fallback because it's too
hackish and too rarely useful.
---
hload-path.el | 1 -
hversion.el | 27 ---------------------------
hyperbole.el | 6 +++---
3 files changed, 3 insertions(+), 31 deletions(-)
diff --git a/hload-path.el b/hload-path.el
index 1b418e79f5..c6d2f0814d 100644
--- a/hload-path.el
+++ b/hload-path.el
@@ -46,7 +46,6 @@ Use `hyperb:wsl-os-p' to test if running under WSL.")
(macroexp-file-name)
(and (stringp load-file-name) load-file-name))
(locate-file "hmouse-tag.el" load-path)
- (hyperb:path-being-loaded)
""))
(error
"(Hyperbole): Failed to set hyperb:dir. Try setting it
manually"))
diff --git a/hversion.el b/hversion.el
index 5896e38677..72c6c97f7e 100644
--- a/hversion.el
+++ b/hversion.el
@@ -93,33 +93,6 @@ of stack frames (from innermost to outermost)."
nil)
(if debug-flag (nreverse frame-list)))))
-(defun hyperb:path-being-loaded ()
- "Return the full pathname used by the innermost `load' or `require' call.
-Removes any matches for `hyperb:automount-prefixes' before returning
-the pathname."
- (let* ((frame (hyperb:stack-frame '(load require)))
- (function (nth 1 frame))
- file nosuffix)
- (cond ((eq function 'load)
- (setq file (nth 2 frame)
- nosuffix (nth 5 frame)))
- ((eq function 'require)
- (setq file (or (nth 3 frame) (symbol-name (nth 2 frame))))))
- (if (stringp file)
- (setq nosuffix (or nosuffix
- (string-match
- "\\.\\(elc?\\|elc?\\.gz\\|elc?\\.Z\\)$"
- file))
- file (substitute-in-file-name file)
- file (locate-file file load-path
- (if (null nosuffix) '(".elc" ".el" ".el.gz"
".el.Z"))
- ;; accept any existing file
- nil)
- file (if (and (stringp file)
- (string-match hyperb:automount-prefixes file))
- (substring file (1- (match-end 0)))
- file)))))
-
(defun hyperb:window-sys-term (&optional frame)
"Return first part of the term-type if running under a window system, else
nil.
Where a part in the term-type is delimited by a `-' or an `_'."
diff --git a/hyperbole.el b/hyperbole.el
index f270cfc165..7286fa7dce 100644
--- a/hyperbole.el
+++ b/hyperbole.el
@@ -113,9 +113,9 @@
(setq features (delq 'hload-path features)
features (delq 'hversion features)))
- ;; Defines hyperb:path-being-loaded, hyperb:stack-frame,
- ;; (hyperb:window-system) and hyperb:dir, which are used later in
- ;; this file. Also adds Hyperbole to the load-path if need be.
+ ;; Defines hyperb:stack-frame, (hyperb:window-system), and hyperb:dir,
+ ;; which are used later in this file.
+ ;; Also adds Hyperbole to the load-path if need be.
;;
;; This handles the case when the Hyperbole package directory is not yet in
load-path.
(unless (or (require 'hversion nil t)
- [elpa] branch scratch/hyperbole created (now 0abc388edb), Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole bfe7ef167d 02/15: * hversion.el (hyperb:path-being-loaded): Delete function,
Stefan Monnier <=
- [elpa] scratch/hyperbole 3eef78bc79 04/15: (kotl-mode:pre-self-insert-command): Use buffer-locally at top-level, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole 2803a985a0 07/15: (kview:char-visible-p): Delete function, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole ba352bce93 14/15: Fix a few minor miscompilations and warnings, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole fdd704bf20 13/15: (man-show): Fix miscompilation, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole 538590efcc 06/15: Fix compilation of test file, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole 25e0fed3bb 12/15: * hui-select.el: Fix a few warnings and improve some docstrings, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole 02bf28e5cd 03/15: Try and avoid using `hyperb:stack-frame`, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole 2a58ece547 01/15: * hload-path.el (hyperb:dir): Use `macroexp-file-name`, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole 31e1c06f46 05/15: Get rid of `hyperb:stack-frame`, Stefan Monnier, 2023/05/02
- [elpa] scratch/hyperbole 73f076d5ad 08/15: * hact.el: Fix broken lexical-binding cookie, Stefan Monnier, 2023/05/02