branch: externals/hyperbole commit ee3e970cbd8098b461d48438bcf321c56b8a4ce6 Author: bw <r...@gnu.org> Commit: bw <r...@gnu.org>
hywiki.el - Define 'hywiki--buttonize-characters' before use --- hywiki.el | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/hywiki.el b/hywiki.el index dbce18d9ae..f822288bc5 100644 --- a/hywiki.el +++ b/hywiki.el @@ -3,7 +3,7 @@ ;; Author: Bob Weiner ;; ;; Orig-Date: 21-Apr-24 at 22:41:13 -;; Last-Mod: 19-May-24 at 02:05:01 by Bob Weiner +;; Last-Mod: 19-May-24 at 04:10:28 by Bob Weiner ;; ;; SPDX-License-Identifier: GPL-3.0-or-later ;; @@ -139,6 +139,17 @@ the HyWiki word and grouping 2 is the #section with the # included.") :initialize #'custom-initialize-default :group 'hyperbole-buttons) +;;; ************************************************************************ +;;; Private variables +;;; ************************************************************************ + +(defvar hywiki--buttonize-characters + (concat " \r\n\)\]\>\}'" (hywiki-get-buttonize-characters)) + "String of single character keys bound to `hywiki-buttonize'. +Each such key self-inserts before highlighting any prior HyWiki word.") + +(defvar hywiki--pages-hasht nil) + ;;; ************************************************************************ ;;; Public Implicit Button and Action Types ;;; ************************************************************************ @@ -557,15 +568,4 @@ Use `hywiki-get-page' to determine whether a HyWiki page exists." (lambda () (add-hook 'find-file-hook #'hywiki-find-page t))) -;;; ************************************************************************ -;;; Private variables -;;; ************************************************************************ - -(defvar hywiki--buttonize-characters - (concat " \r\n\)\]\>\}'" (hywiki-get-buttonize-characters)) - "String of single character keys bound to `hywiki-buttonize'. -Each such key self-inserts before highlighting any prior HyWiki word.") - -(defvar hywiki--pages-hasht nil) - (provide 'hywiki)