summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-02-29 19:22:05 +0000
committerRichard M. Stallman <rms@gnu.org>1996-02-29 19:22:05 +0000
commitba617751754f7f67394d203225b5b68dc7b7d266 (patch)
tree2931f6869215f6295857d077bd28752df2acbcc6
parent9db6669e7e91b7d929c88a07f30b472ba9aee771 (diff)
downloademacs-ba617751754f7f67394d203225b5b68dc7b7d266.tar.gz
(iso-languages): Add ~? and ~!.
-rw-r--r--lisp/international/iso-acc.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/international/iso-acc.el b/lisp/international/iso-acc.el
index abdafe3cf83..26fd5e8c43c 100644
--- a/lisp/international/iso-acc.el
+++ b/lisp/international/iso-acc.el
@@ -135,6 +135,7 @@
(?\~ (?A . ?\303) (?C . ?\307) (?D . ?\320) (?N . ?\321) (?O . ?\325)
(?T . ?\336) (?a . ?\343) (?c . ?\347) (?d . ?\360) (?n . ?\361)
(?o . ?\365) (?t . ?\376) (?> . ?\273) (?< . ?\253) (?\~ . ?\270)
+ (?! . ?\241) (?? . ?\277)
(?\ . ?\~))
(?\/ (?A . ?\305) (?E . ?\306) (?O . ?\330) (?a . ?\345) (?e . ?\346)
(?o . ?\370) (?\/ . ?\260) (?\ . ?\/))))
@@ -348,4 +349,14 @@ Noninteractively, this operates on text from START to END."
;; Set up the default settings.
(iso-accents-customize "latin-1")
+;; Use Iso-Accents mode in the minibuffer
+;; if it was in use in the previous buffer.
+(defun iso-acc-minibuf-setup ()
+ (setq iso-accents-mode
+ (save-excursion
+ (set-buffer (window-buffer minibuffer-scroll-window))
+ iso-accents-mode)))
+
+(add-hook 'minibuf-setup-hook 'iso-acc-minibuf-setup)
+
;;; iso-acc.el ends here