Variable: *hhist*

*hhist* is a variable defined in hhist.el.

Value

nil

Documentation

List of previously visited Hyperbole button source locations.

Car of list is most recent.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hhist.el
;;; hhist.el --- History of Hyperbole buttons selected  -*- lexical-binding: t; -*-
;;
;; Author:       Bob Weiner
;;
;; Orig-Date:    24-Apr-91 at 03:36:23
;; Last-Mod:     10-Aug-25 at 19:57:04 by Mats Lidell
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
;; Copyright (C) 1991-2025  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:
;;; ************************************************************************
;;; Private variables
;;; ************************************************************************

(defvar *hhist* nil
  "List of previously visited Hyperbole button source locations.
Car of list is most recent.")