Function: hypb:help-buf-name

hypb:help-buf-name is a byte-compiled function defined in hypb.el.

Signature

(hypb:help-buf-name &optional SUFFIX)

Documentation

Return a Hyperbole help buffer name for current buffer.

With optional SUFFIX string, uses it rather than buffer name.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:help-buf-name (&optional suffix)
  "Return a Hyperbole help buffer name for current buffer.
With optional SUFFIX string, uses it rather than buffer name."
  (let ((bn (or suffix (buffer-name))))
    (if (string-match (regexp-quote hypb:help-buf-prefix) bn)
	(buffer-name (generate-new-buffer bn))
      (concat hypb:help-buf-prefix bn "*"))))