summaryrefslogtreecommitdiff
path: root/lisp/international/quail.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-02-03 10:33:01 +0000
committerRichard M. Stallman <rms@gnu.org>2002-02-03 10:33:01 +0000
commit1ce2659dbe1e56ce2b738e2946c4cea38d665d7f (patch)
tree983d8641d7d7b0cc943c147630c7ae2d5fe2c0cc /lisp/international/quail.el
parentf80e2142fc2000fff4cad43019120113fade0a1d (diff)
downloademacs-1ce2659dbe1e56ce2b738e2946c4cea38d665d7f.tar.gz
(quail-help): Don't call help-setup-xref.
Diffstat (limited to 'lisp/international/quail.el')
-rw-r--r--lisp/international/quail.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/international/quail.el b/lisp/international/quail.el
index 0c301111dac..dcadfa7a3b8 100644
--- a/lisp/international/quail.el
+++ b/lisp/international/quail.el
@@ -2416,10 +2416,10 @@ package to describe."
(assoc package quail-package-alist)
quail-current-package)))
;; At first, make sure that the help buffer has window.
- (help-setup-xref (list #'quail-help package) (interactive-p))
- (with-output-to-temp-buffer (help-buffer)
- (with-current-buffer standard-output
- (setq quail-current-package package-def)))
+ (let ((temp-buffer-show-hook nil))
+ (with-output-to-temp-buffer (help-buffer)
+ (with-current-buffer standard-output
+ (setq quail-current-package package-def))))
;; Then, insert text in the help buffer while paying attention to
;; the width of the frame in which the buffer displayed.
(with-current-buffer (help-buffer)