blob: 3f988e3e934b5aa79362aa32d5d22990c0fd6608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
;;; hhist.el --- History of Hyperbole buttons selected
;;
;; Author: Bob Weiner
;;
;; Orig-Date: 24-Apr-91 at 03:36:23
;;
;; Copyright (C) 1991-2016 Free Software Foundation, Inc.
;; See the "HY-COPY" file for license information.
;;
;; This file is part of GNU Hyperbole.
;;
;;; Commentary:
;;
;; This implements a last-in-first-out stack of traversed locations
;; for use as a locational history in Hyperbole. Each location stores
;; the frame and window locations of all buffers. When restoring a location,
;; if new frames are created after the location has been stored, they are
;; minimized, not deleted. Use the Emacs Buffer menu to return to them.
;; Frames which have been deleted are not restored.
;;; Code:
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************
(defun hhist:add (elt)
"Adds ELT to hyper-history list if not the same as current or previous loc.
ELT must have been created via a call to 'hhist:element'."
;; Even though this next line looks useless, it cures a problem with
;; window buffer correspondences on startup, so don't remove it.
(set-buffer (window-buffer (selected-window)))
(let ((prev-config elt))
(if (or (equal prev-config (current-frame-configuration))
(equal prev-config (car *hhist*)))
nil
(setq *hhist* (cons elt *hhist*)))))
(defun hhist:element ()
"Returns a history element for current point location."
(current-frame-configuration))
(defun hhist:remove (&optional arg)
"Removes optional prefix ARG entries from history, returns to ARGth location.
The command is ignored with ARG < 1."
(interactive "p")
(setq arg (cond ((or (null arg)
(and (listp arg) (not (integerp (car arg))))
(not (integerp arg)))
1)
((and (listp arg) (integerp (car arg)))
(car arg))
((listp arg) 1)
(t arg)))
(let ((prev-config))
(if (null *hhist*)
(and (> arg 0)
(message "(hhist:remove): No previous location to which to return.")
(beep))
(while (and (> arg 0) *hhist*)
(setq prev-config (car *hhist*)
*hhist* (cdr *hhist*)
arg (1- arg)))
(if (frame-configuration-p prev-config)
;; Minify but keep any frames created after this frame configuration was saved.
(set-frame-configuration prev-config t)))))
(defun hhist:init ()
"Resets history list."
(interactive)
(setq *hhist* nil))
;;; ************************************************************************
;;; Private variables
;;; ************************************************************************
(defconst *hhist* nil
"List of previously visited Hyperbole button source locations.
Car of list is most recent.")
(provide 'hhist)
;;; hhist.el ends here
|