diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-06-28 11:54:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-06-28 11:54:47 +0000 |
commit | 821917cfe13a456b41730a80f15db07b78d10fe9 (patch) | |
tree | c166185746f935870e9af87503ac227823e737bd /lisp/international/mule-cmds.el | |
parent | 3f9f1c1fba5a86d29330d2128e8d41b25be9541a (diff) | |
download | emacs-821917cfe13a456b41730a80f15db07b78d10fe9.tar.gz |
(mule-menu-keymap): Delete mouse-set-fonts item here.
Diffstat (limited to 'lisp/international/mule-cmds.el')
-rw-r--r-- | lisp/international/mule-cmds.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index b2306a954dc..b04d30ac3f4 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -64,10 +64,6 @@ (define-key-after mule-menu-keymap [set-language-environment] (list 'menu-item "Set Language Environment" setup-language-environment-map :help "Multilingual environment suitable for a specific language")) -(define-key-after menu-bar-options-menu [mouse-set-font] - '(menu-item "Set Font/Fontset" mouse-set-font - :visible (fboundp 'generate-fontset-menu) - :help "Select a font from list of known fonts/fontsets")) (define-key-after mule-menu-keymap [separator-mule] '("--") t) @@ -1688,11 +1684,16 @@ The default status is as follows: (let ((coding (get-language-info language-name 'unibyte-display))) (if coding (standard-display-european-internal) +<<<<<<< mule-cmds.el + (dotimes (i 128) + (aset standard-display-table (+ i 128) nil)) +======= ;; The following 2 lines undo the 8-bit display that we set up ;; in standard-display-european-internal, which see. This is in ;; case the user has used standard-display-european earlier in ;; this session. (The MS-DOS port doesn't use that setup, so it ;; doesn't need to undo it.) +>>>>>>> 1.234 (standard-display-default (if (eq window-system 'pc) 128 160) 255) (aset standard-display-table 146 nil)) (or (eq window-system 'pc) |