[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] scratch/hyperbole 967814d82e 13/15: (man-show): Fix miscompilatio
|
From: |
Stefan Monnier |
|
Subject: |
[elpa] scratch/hyperbole 967814d82e 13/15: (man-show): Fix miscompilation |
|
Date: |
Sun, 21 May 2023 18:50:54 -0400 (EDT) |
branch: scratch/hyperbole
commit 967814d82e2c6795fc11a5db5ab08306629dfc6c
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
(man-show): Fix miscompilation
* hactypes.el (annot-bib): Avoid gratuitous `setq`.
(man-show): Declare `Man-notify-method` to fix miscompilation.
(rfc-toc): `select-buffer` doesn't exist.
---
hactypes.el | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/hactypes.el b/hactypes.el
index a622feb99e..0b10d978a3 100644
--- a/hactypes.el
+++ b/hactypes.el
@@ -32,14 +32,14 @@
;;; Standard Hyperbole action types
;;; ************************************************************************
-(defact annot-bib (key)
+(defact annot-bib (key) ;; FIXME: Clean up namespace use!
"Follow internal ref KEY within an annotated bibliography, delimiters=[]."
(interactive "sReference key (no []): ")
- (let ((key-regexp (concat "^[*]*[ \t]*\\[" (ebut:key-to-label key) "\\]"))
- citation)
- (if (save-excursion
- (goto-char (point-max))
- (setq citation (re-search-backward key-regexp nil t)))
+ (let* ((key-regexp (concat "^[*]*[ \t]*\\[" (ebut:key-to-label key) "\\]"))
+ (citation (save-excursion
+ (goto-char (point-max))
+ (re-search-backward key-regexp nil t))))
+ (if citation
(progn (hpath:display-buffer (current-buffer))
(goto-char citation)
(beginning-of-line))
@@ -688,6 +688,7 @@ package to display search results."
Uses `hpath:display-where' setting to control where the man page is displayed."
(interactive "sManual topic: ")
(require 'man)
+ (defvar Man-notify-method)
(let ((Man-notify-method 'meek))
(hpath:display-buffer (man topic))))
@@ -715,7 +716,7 @@ Optional SECTIONS-START limits toc entries to those after
that point."
(insert "Sections of " rfc-buf-name ":\n")
(set-buffer-modified-p nil))
(when opoint
- (select-buffer buf-name)
+ (set-buffer buf-name)
(goto-char opoint))))
(defact text-toc (section)
- [elpa] scratch/hyperbole c4c9abe70f 03/15: Try and avoid using `hyperb:stack-frame`, (continued)
- [elpa] scratch/hyperbole c4c9abe70f 03/15: Try and avoid using `hyperb:stack-frame`, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 96b7ce0f45 04/15: (kotl-mode:pre-self-insert-command): Use buffer-locally at top-level, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 9a148b300e 02/15: * hversion.el (hyperb:path-being-loaded): Delete function, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 7927b78a42 06/15: Fix compilation of test file, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 30fbe524e5 07/15: (kview:char-visible-p): Delete function, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole d9a32c26f3 08/15: * hact.el: Fix broken lexical-binding cookie, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 8763db49e1 10/15: hyperbole-autoloads.el: Remove needless definitions, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 1ee361c05d 11/15: * hycontrol.el (hycontrol-windows-mode-map): Don't autoload, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 04f3fdc53d 14/15: Fix a few minor miscompilations and warnings, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 0670cc54b0 09/15: * hyperbole.el: Preload `kotl-autoloads`, Stefan Monnier, 2023/05/21
- [elpa] scratch/hyperbole 967814d82e 13/15: (man-show): Fix miscompilation,
Stefan Monnier <=
- [elpa] scratch/hyperbole 3252a81433 12/15: * hui-select.el: Fix a few warnings and improve some docstrings, Stefan Monnier, 2023/05/21