1995-10-30 17:35:01 +00:00
|
|
|
|
;;; facemenu.el --- create a face menu for interactively adding fonts to text
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
2020-01-01 00:19:43 +00:00
|
|
|
|
;; Copyright (C) 1994-1996, 2001-2020 Free Software Foundation, Inc.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
1999-08-16 04:04:27 +00:00
|
|
|
|
;; Author: Boris Goldowsky <boris@gnu.org>
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;; Keywords: faces
|
2010-08-29 16:17:13 +00:00
|
|
|
|
;; Package: emacs
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
1994-10-20 18:15:25 +00:00
|
|
|
|
;; This file defines a menu of faces (bold, italic, etc) which allows you to
|
|
|
|
|
;; set the face used for a region of the buffer. Some faces also have
|
2002-03-14 08:52:16 +00:00
|
|
|
|
;; keybindings, which are shown in the menu.
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
;;
|
|
|
|
|
;; The menu also contains submenus for indentation and justification-changing
|
|
|
|
|
;; commands.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
;;; Usage:
|
1994-10-20 18:15:25 +00:00
|
|
|
|
;; Selecting a face from the menu or typing the keyboard equivalent will
|
|
|
|
|
;; change the region to use that face. If you use transient-mark-mode and the
|
|
|
|
|
;; region is not active, the face will be remembered and used for the next
|
|
|
|
|
;; insertion. It will be forgotten if you move point or make other
|
|
|
|
|
;; modifications before inserting or typing anything.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;;
|
2003-02-04 11:26:42 +00:00
|
|
|
|
;; Faces can be selected from the keyboard as well.
|
2005-03-06 20:44:33 +00:00
|
|
|
|
;; The standard keybindings are M-o (or ESC o) + letter:
|
|
|
|
|
;; M-o i = "set italic", M-o b = "set bold", etc.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
;;; Customization:
|
|
|
|
|
;; An alternative set of keybindings that may be easier to type can be set up
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
;; using "Alt" or "Hyper" keys. This requires that you either have or create
|
|
|
|
|
;; an Alt or Hyper key on your keyboard. On my keyboard, there is a key
|
|
|
|
|
;; labeled "Alt", but to make it act as an Alt key I have to put this command
|
|
|
|
|
;; into my .xinitrc:
|
|
|
|
|
;; xmodmap -e "add Mod3 = Alt_L"
|
|
|
|
|
;; Or, I can make it into a Hyper key with this:
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;; xmodmap -e "keysym Alt_L = Hyper_L" -e "add Mod2 = Hyper_L"
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
;; Check with local X-perts for how to do it on your system.
|
|
|
|
|
;; Then you can define your keybindings with code like this in your .emacs:
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;; (setq facemenu-keybindings
|
|
|
|
|
;; '((default . [?\H-d])
|
|
|
|
|
;; (bold . [?\H-b])
|
|
|
|
|
;; (italic . [?\H-i])
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
;; (bold-italic . [?\H-l])
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;; (underline . [?\H-u])))
|
1997-04-18 02:53:46 +00:00
|
|
|
|
;; (facemenu-update)
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;; (setq facemenu-keymap global-map)
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
;; (define-key global-map [?\H-c] 'facemenu-set-foreground) ; set fg color
|
|
|
|
|
;; (define-key global-map [?\H-C] 'facemenu-set-background) ; set bg color
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;;
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
;; The order of the faces that appear in the menu and their keybindings can be
|
|
|
|
|
;; controlled by setting the variables `facemenu-keybindings' and
|
2006-07-03 14:31:35 +00:00
|
|
|
|
;; `facemenu-new-faces-at-end'. List faces that you want to use in documents
|
|
|
|
|
;; in `facemenu-listed-faces'.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
;;; Known Problems:
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
;; Bold and Italic do not combine to create bold-italic if you select them
|
|
|
|
|
;; both, although most other combinations (eg bold + underline + some color)
|
|
|
|
|
;; do the intuitive thing.
|
|
|
|
|
;;
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;; There is at present no way to display what the faces look like in
|
|
|
|
|
;; the menu itself.
|
|
|
|
|
;;
|
|
|
|
|
;; `list-faces-display' shows the faces in a different order than
|
|
|
|
|
;; this menu, which could be confusing. I do /not/ sort the list
|
|
|
|
|
;; alphabetically, because I like the default order: it puts the most
|
|
|
|
|
;; basic, common fonts first.
|
|
|
|
|
;;
|
|
|
|
|
;; Please send me any other problems, comments or ideas.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
1997-04-18 02:53:46 +00:00
|
|
|
|
;; Global bindings:
|
|
|
|
|
(define-key global-map [C-down-mouse-2] 'facemenu-menu)
|
2005-03-06 20:44:33 +00:00
|
|
|
|
(define-key global-map "\M-o" 'facemenu-keymap)
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
1997-07-27 19:53:27 +00:00
|
|
|
|
(defgroup facemenu nil
|
2005-07-04 02:04:45 +00:00
|
|
|
|
"Create a face menu for interactively adding fonts to text."
|
1997-07-27 19:53:27 +00:00
|
|
|
|
:group 'faces
|
|
|
|
|
:prefix "facemenu-")
|
|
|
|
|
|
|
|
|
|
(defcustom facemenu-keybindings
|
2009-11-11 05:49:09 +00:00
|
|
|
|
(mapcar 'purecopy
|
1994-09-14 19:32:18 +00:00
|
|
|
|
'((default . "d")
|
|
|
|
|
(bold . "b")
|
|
|
|
|
(italic . "i")
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(bold-italic . "l") ; {bold} intersect {italic} = {l}
|
2009-11-11 05:49:09 +00:00
|
|
|
|
(underline . "u")))
|
2001-12-03 06:09:24 +00:00
|
|
|
|
"Alist of interesting faces and keybindings.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
Each element is itself a list: the car is the name of the face,
|
|
|
|
|
the next element is the key to use as a keyboard equivalent of the menu item;
|
1997-04-18 02:53:46 +00:00
|
|
|
|
the binding is made in `facemenu-keymap'.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
The faces specifically mentioned in this list are put at the top of
|
2006-07-03 14:31:35 +00:00
|
|
|
|
the menu, in the order specified. All other faces which are defined
|
|
|
|
|
in `facemenu-listed-faces' are listed after them, but get no
|
|
|
|
|
keyboard equivalents.
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
If you change this variable after loading facemenu.el, you will need to call
|
1997-07-27 19:53:27 +00:00
|
|
|
|
`facemenu-update' to make it take effect."
|
|
|
|
|
:type '(repeat (cons face string))
|
|
|
|
|
:group 'facemenu)
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
1997-07-27 19:53:27 +00:00
|
|
|
|
(defcustom facemenu-new-faces-at-end t
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Where in the menu to insert newly-created faces.
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
This should be nil to put them at the top of the menu, or t to put them
|
1997-07-27 19:53:27 +00:00
|
|
|
|
just before \"Other\" at the end."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'facemenu)
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
|
2006-07-03 14:31:35 +00:00
|
|
|
|
(defcustom facemenu-listed-faces nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"List of faces to include in the Face menu.
|
2006-08-10 04:31:21 +00:00
|
|
|
|
Each element should be a symbol, the name of a face.
|
2006-07-03 14:31:35 +00:00
|
|
|
|
The \"basic \" faces in `facemenu-keybindings' are automatically
|
2006-08-10 04:31:21 +00:00
|
|
|
|
added to the Face menu, and need not be in this list.
|
|
|
|
|
|
|
|
|
|
This value takes effect when you load facemenu.el. If the
|
|
|
|
|
list includes symbols which are not defined as faces, they
|
|
|
|
|
are ignored; however, subsequently defining or creating
|
|
|
|
|
those faces adds them to the menu then. You can call
|
|
|
|
|
`facemenu-update' to recalculate the menu contents, such as
|
|
|
|
|
if you change the value of this variable,
|
|
|
|
|
|
|
|
|
|
If this variable is t, all faces that you apply to text
|
|
|
|
|
using the face menu commands (even by name), and all faces
|
|
|
|
|
that you define or create, are added to the menu. You may
|
|
|
|
|
find it useful to set this variable to t temporarily while
|
|
|
|
|
you define some faces, so that they will be added. However,
|
|
|
|
|
if the value is no longer t and you call `facemenu-update',
|
|
|
|
|
it will remove any faces not explicitly in the list."
|
2006-07-03 14:31:35 +00:00
|
|
|
|
:type '(choice (const :tag "List all faces" t)
|
|
|
|
|
(const :tag "None" nil)
|
|
|
|
|
(repeat symbol))
|
|
|
|
|
:group 'facemenu
|
|
|
|
|
:version "22.1")
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
|
|
|
|
|
(defvar facemenu-face-menu
|
1994-10-20 18:15:25 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Face")))
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
(define-key map "o" (cons (purecopy "Other...") 'facemenu-set-face))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
map)
|
|
|
|
|
"Menu keymap for faces.")
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(defalias 'facemenu-face-menu facemenu-face-menu)
|
2005-06-25 22:24:10 +00:00
|
|
|
|
(put 'facemenu-face-menu 'menu-enable '(facemenu-enable-faces-p))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(defvar facemenu-foreground-menu
|
1994-10-20 18:15:25 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Foreground Color")))
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
(define-key map "o" (cons (purecopy "Other...") 'facemenu-set-foreground))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
map)
|
|
|
|
|
"Menu keymap for foreground colors.")
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(defalias 'facemenu-foreground-menu facemenu-foreground-menu)
|
2005-06-25 22:24:10 +00:00
|
|
|
|
(put 'facemenu-foreground-menu 'menu-enable '(facemenu-enable-faces-p))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
|
|
|
|
(defvar facemenu-background-menu
|
|
|
|
|
(let ((map (make-sparse-keymap "Background Color")))
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
(define-key map "o" (cons (purecopy "Other...") 'facemenu-set-background))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
map)
|
2000-07-06 13:58:49 +00:00
|
|
|
|
"Menu keymap for background colors.")
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(defalias 'facemenu-background-menu facemenu-background-menu)
|
2005-06-25 22:24:10 +00:00
|
|
|
|
(put 'facemenu-background-menu 'menu-enable '(facemenu-enable-faces-p))
|
|
|
|
|
|
|
|
|
|
;;; Condition for enabling menu items that set faces.
|
|
|
|
|
(defun facemenu-enable-faces-p ()
|
2009-10-31 21:52:53 +00:00
|
|
|
|
;; Enable the facemenu if facemenu-add-face-function is defined
|
|
|
|
|
;; (e.g. in Tex-mode and SGML mode), or if font-lock is off.
|
|
|
|
|
(or (not (and font-lock-mode font-lock-defaults))
|
|
|
|
|
facemenu-add-face-function))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(defvar facemenu-special-menu
|
1994-10-20 18:15:25 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Special")))
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(define-key map [?s] (cons (purecopy "Remove Special")
|
|
|
|
|
'facemenu-remove-special))
|
2018-05-19 15:17:38 +00:00
|
|
|
|
(define-key map [?c] (cons (purecopy "Charset")
|
|
|
|
|
'facemenu-set-charset))
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(define-key map [?t] (cons (purecopy "Intangible")
|
|
|
|
|
'facemenu-set-intangible))
|
|
|
|
|
(define-key map [?v] (cons (purecopy "Invisible")
|
|
|
|
|
'facemenu-set-invisible))
|
|
|
|
|
(define-key map [?r] (cons (purecopy "Read-Only")
|
|
|
|
|
'facemenu-set-read-only))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
map)
|
|
|
|
|
"Menu keymap for non-face text-properties.")
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(defalias 'facemenu-special-menu facemenu-special-menu)
|
|
|
|
|
|
|
|
|
|
(defvar facemenu-justification-menu
|
|
|
|
|
(let ((map (make-sparse-keymap "Justification")))
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(define-key map [?c] (cons (purecopy "Center") 'set-justification-center))
|
|
|
|
|
(define-key map [?b] (cons (purecopy "Full") 'set-justification-full))
|
|
|
|
|
(define-key map [?r] (cons (purecopy "Right") 'set-justification-right))
|
|
|
|
|
(define-key map [?l] (cons (purecopy "Left") 'set-justification-left))
|
|
|
|
|
(define-key map [?u] (cons (purecopy "Unfilled") 'set-justification-none))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
map)
|
|
|
|
|
"Submenu for text justification commands.")
|
|
|
|
|
(defalias 'facemenu-justification-menu facemenu-justification-menu)
|
|
|
|
|
|
|
|
|
|
(defvar facemenu-indentation-menu
|
|
|
|
|
(let ((map (make-sparse-keymap "Indentation")))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(define-key map [decrease-right-margin]
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(cons (purecopy "Indent Right Less") 'decrease-right-margin))
|
1995-05-30 18:31:00 +00:00
|
|
|
|
(define-key map [increase-right-margin]
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(cons (purecopy "Indent Right More") 'increase-right-margin))
|
1995-05-30 18:31:00 +00:00
|
|
|
|
(define-key map [decrease-left-margin]
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(cons (purecopy "Indent Less") 'decrease-left-margin))
|
1995-05-30 18:31:00 +00:00
|
|
|
|
(define-key map [increase-left-margin]
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(cons (purecopy "Indent More") 'increase-left-margin))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
map)
|
|
|
|
|
"Submenu for indentation commands.")
|
|
|
|
|
(defalias 'facemenu-indentation-menu facemenu-indentation-menu)
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
1995-05-30 18:31:00 +00:00
|
|
|
|
;; This is split up to avoid an overlong line in loaddefs.el.
|
|
|
|
|
(defvar facemenu-menu nil
|
1994-11-09 20:56:17 +00:00
|
|
|
|
"Facemenu top-level menu keymap.")
|
1995-05-30 18:31:00 +00:00
|
|
|
|
(setq facemenu-menu (make-sparse-keymap "Text Properties"))
|
|
|
|
|
(let ((map facemenu-menu))
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(define-key map [dc] (cons (purecopy "Display Colors") 'list-colors-display))
|
|
|
|
|
(define-key map [df] (cons (purecopy "Display Faces") 'list-faces-display))
|
2002-06-17 16:14:37 +00:00
|
|
|
|
(define-key map [dp] (cons (purecopy "Describe Properties")
|
|
|
|
|
'describe-text-properties))
|
2011-09-11 01:55:09 +00:00
|
|
|
|
(define-key map [ra] (list 'menu-item (purecopy "Remove Text Properties")
|
|
|
|
|
'facemenu-remove-all
|
|
|
|
|
:enable 'mark-active))
|
|
|
|
|
(define-key map [rm] (list 'menu-item (purecopy "Remove Face Properties")
|
|
|
|
|
'facemenu-remove-face-props
|
|
|
|
|
:enable 'mark-active))
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(define-key map [s1] (list (purecopy "--"))))
|
1995-05-30 18:31:00 +00:00
|
|
|
|
(let ((map facemenu-menu))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(define-key map [in] (cons (purecopy "Indentation")
|
2000-01-28 23:51:45 +00:00
|
|
|
|
'facemenu-indentation-menu))
|
|
|
|
|
(define-key map [ju] (cons (purecopy "Justification")
|
|
|
|
|
'facemenu-justification-menu))
|
|
|
|
|
(define-key map [s2] (list (purecopy "--")))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(define-key map [sp] (cons (purecopy "Special Properties")
|
2000-01-28 23:51:45 +00:00
|
|
|
|
'facemenu-special-menu))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(define-key map [bg] (cons (purecopy "Background Color")
|
2000-01-28 23:51:45 +00:00
|
|
|
|
'facemenu-background-menu))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(define-key map [fg] (cons (purecopy "Foreground Color")
|
2000-01-28 23:51:45 +00:00
|
|
|
|
'facemenu-foreground-menu))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(define-key map [fc] (cons (purecopy "Face")
|
2000-01-28 23:51:45 +00:00
|
|
|
|
'facemenu-face-menu)))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(defalias 'facemenu-menu facemenu-menu)
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(defvar facemenu-keymap
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Set face")))
|
2000-01-28 23:51:45 +00:00
|
|
|
|
(define-key map "o" (cons (purecopy "Other...") 'facemenu-set-face))
|
2008-03-14 16:15:49 +00:00
|
|
|
|
(define-key map "\M-o" 'font-lock-fontify-block)
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
map)
|
1995-03-22 19:42:05 +00:00
|
|
|
|
"Keymap for face-changing commands.
|
1994-10-20 18:15:25 +00:00
|
|
|
|
`Facemenu-update' fills in the keymap according to the bindings
|
1994-11-09 20:56:17 +00:00
|
|
|
|
requested in `facemenu-keybindings'.")
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(defalias 'facemenu-keymap facemenu-keymap)
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
1996-01-02 23:04:06 +00:00
|
|
|
|
|
1997-07-27 19:53:27 +00:00
|
|
|
|
(defcustom facemenu-add-face-function nil
|
2000-07-06 13:58:49 +00:00
|
|
|
|
"Function called at beginning of text to change or nil.
|
1996-01-02 23:04:06 +00:00
|
|
|
|
This function is passed the FACE to set and END of text to change, and must
|
1997-07-27 19:53:27 +00:00
|
|
|
|
return a string which is inserted. It may set `facemenu-end-add-face'."
|
|
|
|
|
:type '(choice (const :tag "None" nil)
|
|
|
|
|
function)
|
|
|
|
|
:group 'facemenu)
|
1996-01-02 23:04:06 +00:00
|
|
|
|
|
1997-07-27 19:53:27 +00:00
|
|
|
|
(defcustom facemenu-end-add-face nil
|
2000-07-06 13:58:49 +00:00
|
|
|
|
"String to insert or function called at end of text to change or nil.
|
1996-01-02 23:04:06 +00:00
|
|
|
|
This function is passed the FACE to set, and must return a string which is
|
1997-07-27 19:53:27 +00:00
|
|
|
|
inserted."
|
|
|
|
|
:type '(choice (const :tag "None" nil)
|
|
|
|
|
string
|
|
|
|
|
function)
|
|
|
|
|
:group 'facemenu)
|
1996-01-02 23:04:06 +00:00
|
|
|
|
|
1997-07-27 19:53:27 +00:00
|
|
|
|
(defcustom facemenu-remove-face-function nil
|
1997-04-18 02:53:46 +00:00
|
|
|
|
"When non-nil, this is a function called to remove faces.
|
1996-01-02 23:04:06 +00:00
|
|
|
|
This function is passed the START and END of text to change.
|
2000-07-06 13:58:49 +00:00
|
|
|
|
May also be t meaning to use `facemenu-add-face-function'."
|
1997-07-27 19:53:27 +00:00
|
|
|
|
:type '(choice (const :tag "None" nil)
|
|
|
|
|
(const :tag "Use add-face" t)
|
|
|
|
|
function)
|
|
|
|
|
:group 'facemenu)
|
1996-01-02 23:04:06 +00:00
|
|
|
|
|
1994-10-20 18:15:25 +00:00
|
|
|
|
;;; Internal Variables
|
|
|
|
|
|
|
|
|
|
(defvar facemenu-color-alist nil
|
|
|
|
|
"Alist of colors, used for completion.
|
2006-06-16 15:13:21 +00:00
|
|
|
|
If this is nil, then the value of (defined-colors) is used.")
|
1994-10-12 23:23:23 +00:00
|
|
|
|
|
1994-09-14 19:32:18 +00:00
|
|
|
|
(defun facemenu-update ()
|
1994-10-20 18:15:25 +00:00
|
|
|
|
"Add or update the \"Face\" menu in the menu bar.
|
|
|
|
|
You can call this to update things if you change any of the menu configuration
|
|
|
|
|
variables."
|
1994-09-14 19:32:18 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
|
1994-10-20 18:15:25 +00:00
|
|
|
|
;; Add each defined face to the menu.
|
|
|
|
|
(facemenu-iterate 'facemenu-add-new-face
|
|
|
|
|
(facemenu-complete-face-list facemenu-keybindings)))
|
1994-10-12 23:23:23 +00:00
|
|
|
|
|
1994-09-14 19:32:18 +00:00
|
|
|
|
(defun facemenu-set-face (face &optional start end)
|
2006-08-10 04:00:34 +00:00
|
|
|
|
"Apply FACE to the region or next character typed.
|
|
|
|
|
|
|
|
|
|
If the region is active (normally true except in Transient
|
|
|
|
|
Mark mode) and nonempty, and there is no prefix argument,
|
|
|
|
|
this command applies FACE to the region. Otherwise, it applies FACE
|
|
|
|
|
to the faces to use for the next character
|
|
|
|
|
inserted. (Moving point or switching buffers before typing
|
|
|
|
|
a character to insert cancels the specification.)
|
|
|
|
|
|
|
|
|
|
If FACE is `default', to \"apply\" it means clearing
|
|
|
|
|
the list of faces to be used. For any other value of FACE,
|
|
|
|
|
to \"apply\" it means putting FACE at the front of the list
|
|
|
|
|
of faces to be used, and removing any faces further
|
|
|
|
|
along in the list that would be completely overridden by
|
|
|
|
|
preceding faces (including FACE).
|
|
|
|
|
|
|
|
|
|
This command can also add FACE to the menu of faces,
|
|
|
|
|
if `facemenu-listed-faces' says to do that."
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(interactive (list (progn
|
|
|
|
|
(barf-if-buffer-read-only)
|
2013-04-13 01:10:09 +00:00
|
|
|
|
(read-face-name "Use face" (face-at-point t)))
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-beginning))
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-end))))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(facemenu-add-new-face face)
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(facemenu-add-face face start end))
|
1994-10-12 23:23:23 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-set-foreground (color &optional start end)
|
2000-07-06 13:58:49 +00:00
|
|
|
|
"Set the foreground COLOR of the region or next character typed.
|
2002-03-14 08:52:16 +00:00
|
|
|
|
This command reads the color in the minibuffer.
|
2001-10-24 22:53:45 +00:00
|
|
|
|
|
|
|
|
|
If the region is active (normally true except in Transient Mark mode)
|
|
|
|
|
and there is no prefix argument, this command sets the region to the
|
|
|
|
|
requested face.
|
|
|
|
|
|
|
|
|
|
Otherwise, this command specifies the face for the next character
|
|
|
|
|
inserted. Moving point or switching buffers before
|
2003-02-04 11:26:42 +00:00
|
|
|
|
typing a character to insert cancels the specification."
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(interactive (list (progn
|
|
|
|
|
(barf-if-buffer-read-only)
|
2010-10-24 18:43:31 +00:00
|
|
|
|
(read-color "Foreground color: "))
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-beginning))
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-end))))
|
2005-07-01 08:30:30 +00:00
|
|
|
|
(facemenu-set-face-from-menu
|
|
|
|
|
(facemenu-add-new-color color 'facemenu-foreground-menu)
|
|
|
|
|
start end))
|
1994-10-12 23:23:23 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-set-background (color &optional start end)
|
2000-07-06 13:58:49 +00:00
|
|
|
|
"Set the background COLOR of the region or next character typed.
|
2002-03-14 08:52:16 +00:00
|
|
|
|
This command reads the color in the minibuffer.
|
2001-10-24 22:53:45 +00:00
|
|
|
|
|
|
|
|
|
If the region is active (normally true except in Transient Mark mode)
|
|
|
|
|
and there is no prefix argument, this command sets the region to the
|
|
|
|
|
requested face.
|
|
|
|
|
|
|
|
|
|
Otherwise, this command specifies the face for the next character
|
|
|
|
|
inserted. Moving point or switching buffers before
|
2003-02-04 11:26:42 +00:00
|
|
|
|
typing a character to insert cancels the specification."
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(interactive (list (progn
|
|
|
|
|
(barf-if-buffer-read-only)
|
2010-10-24 18:43:31 +00:00
|
|
|
|
(read-color "Background color: "))
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-beginning))
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-end))))
|
2005-07-01 08:30:30 +00:00
|
|
|
|
(facemenu-set-face-from-menu
|
|
|
|
|
(facemenu-add-new-color color 'facemenu-background-menu)
|
|
|
|
|
start end))
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-set-face-from-menu (face start end)
|
2000-07-06 13:58:49 +00:00
|
|
|
|
"Set the FACE of the region or next character typed.
|
2005-07-01 08:30:30 +00:00
|
|
|
|
This function is designed to be called from a menu; FACE is determined
|
|
|
|
|
using the event type of the menu entry. If FACE is a symbol whose
|
|
|
|
|
name starts with \"fg:\" or \"bg:\", then this functions sets the
|
|
|
|
|
foreground or background to the color specified by the rest of the
|
|
|
|
|
symbol's name. Any other symbol is considered the name of a face.
|
1995-05-30 18:31:00 +00:00
|
|
|
|
|
2001-10-24 22:53:45 +00:00
|
|
|
|
If the region is active (normally true except in Transient Mark mode)
|
|
|
|
|
and there is no prefix argument, this command sets the region to the
|
|
|
|
|
requested face.
|
1995-05-30 18:31:00 +00:00
|
|
|
|
|
|
|
|
|
Otherwise, this command specifies the face for the next character
|
2005-07-01 08:30:30 +00:00
|
|
|
|
inserted. Moving point or switching buffers before typing a character
|
|
|
|
|
to insert cancels the specification."
|
1994-10-12 23:23:23 +00:00
|
|
|
|
(interactive (list last-command-event
|
1995-05-30 18:31:00 +00:00
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-beginning))
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-end))))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(barf-if-buffer-read-only)
|
2005-07-01 08:30:30 +00:00
|
|
|
|
(facemenu-add-face
|
|
|
|
|
(let ((fn (symbol-name face)))
|
|
|
|
|
(if (string-match "\\`\\([fb]\\)g:\\(.+\\)" fn)
|
|
|
|
|
(list (list (if (string= (match-string 1 fn) "f")
|
|
|
|
|
:foreground
|
|
|
|
|
:background)
|
|
|
|
|
(match-string 2 fn)))
|
|
|
|
|
face))
|
|
|
|
|
start end))
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-set-invisible (start end)
|
|
|
|
|
"Make the region invisible.
|
|
|
|
|
This sets the `invisible' text property; it can be undone with
|
1995-05-30 18:31:00 +00:00
|
|
|
|
`facemenu-remove-special'."
|
1994-09-14 19:32:18 +00:00
|
|
|
|
(interactive "r")
|
1997-02-24 17:47:07 +00:00
|
|
|
|
(add-text-properties start end '(invisible t)))
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-set-intangible (start end)
|
|
|
|
|
"Make the region intangible: disallow moving into it.
|
|
|
|
|
This sets the `intangible' text property; it can be undone with
|
1995-05-30 18:31:00 +00:00
|
|
|
|
`facemenu-remove-special'."
|
1994-09-14 19:32:18 +00:00
|
|
|
|
(interactive "r")
|
1997-02-24 17:47:07 +00:00
|
|
|
|
(add-text-properties start end '(intangible t)))
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-set-read-only (start end)
|
|
|
|
|
"Make the region unmodifiable.
|
|
|
|
|
This sets the `read-only' text property; it can be undone with
|
1995-05-30 18:31:00 +00:00
|
|
|
|
`facemenu-remove-special'."
|
1994-09-14 19:32:18 +00:00
|
|
|
|
(interactive "r")
|
1997-02-24 17:47:07 +00:00
|
|
|
|
(add-text-properties start end '(read-only t)))
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
2018-05-19 15:17:38 +00:00
|
|
|
|
(defun facemenu-set-charset (cset &optional start end)
|
|
|
|
|
"Apply CHARSET text property to the region or next character typed.
|
|
|
|
|
|
|
|
|
|
If the region is active (normally true except in Transient
|
|
|
|
|
Mark mode) and nonempty, and there is no prefix argument,
|
|
|
|
|
this command adds CHARSET property to the region. Otherwise, it
|
|
|
|
|
sets the CHARSET property of the character at point."
|
|
|
|
|
(interactive (list (progn
|
|
|
|
|
(barf-if-buffer-read-only)
|
|
|
|
|
(read-charset
|
Use `format-prompt' when prompting with default values
* lisp/woman.el (woman-file-name):
* lisp/wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* lisp/w32-fns.el (w32-set-system-coding-system):
* lisp/vc/vc.el (vc-print-root-log):
* lisp/vc/vc-annotate.el (vc-annotate):
* lisp/vc/emerge.el (emerge-read-file-name):
* lisp/vc/ediff.el (ediff-directories)
(ediff-directory-revisions, ediff-directories3)
(ediff-merge-directories, )
(ediff-merge-directories-with-ancestor)
(ediff-merge-directory-revisions)
(ediff-merge-directory-revisions-with-ancestor)
(ediff-merge-revisions, ediff-merge-revisions-with-ancestor)
(ediff-revision):
* lisp/vc/ediff-util.el (ediff-toggle-regexp-match):
* lisp/vc/ediff-mult.el (ediff-filegroup-action):
* lisp/vc/add-log.el (prompt-for-change-log-name):
* lisp/textmodes/table.el (table-insert-row-column)
(table-span-cell, table-split-cell-horizontally)
(table-split-cell, table-justify, table-generate-source)
(table-insert-sequence, table-capture)
(table--read-from-minibuffer, table--query-justification):
* lisp/textmodes/sgml-mode.el (sgml-tag, sgml-tag-help):
* lisp/textmodes/reftex-ref.el (reftex-goto-label):
* lisp/textmodes/refer.el (refer-get-bib-files):
* lisp/textmodes/css-mode.el (css-lookup-symbol):
* lisp/term.el (serial-read-name, serial-read-speed):
* lisp/speedbar.el (speedbar-change-initial-expansion-list):
* lisp/simple.el (previous-matching-history-element)
(set-variable):
* lisp/ses.el (ses-read-cell, ses-set-column-width):
* lisp/replace.el (query-replace-read-from)
(occur-read-primary-args):
* lisp/rect.el (string-rectangle, string-insert-rectangle):
* lisp/progmodes/tcl.el (tcl-help-on-word):
* lisp/progmodes/sh-script.el (sh-set-shell):
* lisp/progmodes/python.el (python-eldoc-at-point):
* lisp/progmodes/octave.el (octave-completing-read)
(octave-update-function-file-comment, octave-insert-defun):
* lisp/progmodes/inf-lisp.el (lisp-symprompt):
* lisp/progmodes/cperl-mode.el (cperl-info-on-command)
(cperl-perldoc):
* lisp/progmodes/compile.el (compilation-find-file):
* lisp/net/rcirc.el (rcirc-prompt-for-encryption):
* lisp/net/eww.el (eww):
* lisp/net/browse-url.el (browse-url-with-browser-kind):
* lisp/man.el (man):
* lisp/mail/sendmail.el (sendmail-query-user-about-smtp):
* lisp/mail/mailalias.el (build-mail-aliases):
* lisp/mail/mailabbrev.el (merge-mail-abbrevs)
(rebuild-mail-abbrevs):
* lisp/locate.el (locate-prompt-for-search-string):
* lisp/isearch.el (isearch-occur):
* lisp/international/ogonek.el (ogonek-read-encoding)
(ogonek-read-prefix):
* lisp/international/mule.el (read-buffer-file-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system, recode-region):
* lisp/international/mule-cmds.el ()
(universal-coding-system-argument, search-unencodable-char)
(select-safe-coding-system-interactively):
* lisp/info.el (Info-search, Info-search-backward, Info-menu):
* lisp/info-look.el (info-lookup-interactive-arguments):
* lisp/imenu.el (imenu--completion-buffer):
* lisp/ibuf-ext.el (mode, used-mode, ibuffer-mark-by-mode):
* lisp/hi-lock.el (hi-lock-unface-buffer)
(hi-lock-read-face-name):
* lisp/help.el (view-emacs-news, where-is):
* lisp/help-fns.el (describe-variable, describe-symbol)
(describe-keymap):
* lisp/gnus/mm-decode.el (mm-save-part):
* lisp/gnus/gnus-sum.el (gnus-summary-browse-url):
* lisp/gnus/gnus-group.el (gnus-group--read-bug-ids)
(gnus-group-set-current-level):
* lisp/frame.el (make-frame-on-monitor)
(close-display-connection, select-frame-by-name):
* lisp/format.el (format-encode-buffer, format-encode-region):
* lisp/files.el (recode-file-name):
* lisp/files-x.el (read-file-local-variable)
(read-file-local-variable-value, )
(read-file-local-variable-mode):
* lisp/ffap.el (ffap-menu-ask):
* lisp/faces.el (face-read-string):
* lisp/facemenu.el (facemenu-set-charset):
* lisp/erc/erc-dcc.el (erc-dcc-do-GET-command):
* lisp/emulation/edt-mapper.el (edt-mapper):
* lisp/emacs-lisp/trace.el (trace--read-args)
(trace-function-foreground, trace-function-background):
* lisp/emacs-lisp/smie.el (smie-config-set-indent):
* lisp/emacs-lisp/re-builder.el (reb-change-syntax):
* lisp/emacs-lisp/package.el (describe-package):
* lisp/emacs-lisp/find-func.el (read-library-name)
(find-function-read):
* lisp/emacs-lisp/ert.el (ert-read-test-name)
(ert-run-tests-interactively):
* lisp/emacs-lisp/disass.el (disassemble):
* lisp/emacs-lisp/debug.el (debug-on-entry)
(debug-on-variable-change):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-read-regexp):
* lisp/dired-x.el (dired--mark-suffix-interactive-spec):
* lisp/dired-aux.el (dired-diff):
* lisp/cus-edit.el (custom-variable-prompt, customize-mode)
(customize-changed-options):
* lisp/completion.el (interactive-completion-string-reader):
* lisp/calendar/timeclock.el (timeclock-ask-for-project):
* lisp/calc/calcalg3.el (calc-get-fit-variables):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-bin.el (calc-word-size):
* lisp/bookmark.el (bookmark-set-internal):
* lisp/abbrev.el (read-abbrev-file): Use `format-prompt' for
prompting (bug#12443).
2020-09-06 14:56:44 +00:00
|
|
|
|
(format-prompt "Use charset" (charset-after))
|
2018-05-19 15:17:38 +00:00
|
|
|
|
(charset-after)))
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-beginning))
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-end))))
|
|
|
|
|
(or start
|
|
|
|
|
(setq start (min (point) (1- (point-max)))
|
|
|
|
|
end (1+ start)))
|
|
|
|
|
(remove-text-properties start end '(charset nil))
|
|
|
|
|
(put-text-property start end 'charset cset))
|
|
|
|
|
|
1997-12-09 21:34:50 +00:00
|
|
|
|
(defun facemenu-remove-face-props (start end)
|
|
|
|
|
"Remove `face' and `mouse-face' text properties."
|
1994-09-14 19:32:18 +00:00
|
|
|
|
(interactive "*r") ; error if buffer is read-only despite the next line.
|
|
|
|
|
(let ((inhibit-read-only t))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(remove-text-properties
|
1997-12-09 21:34:50 +00:00
|
|
|
|
start end '(face nil mouse-face nil))))
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
1995-05-30 18:31:00 +00:00
|
|
|
|
(defun facemenu-remove-all (start end)
|
|
|
|
|
"Remove all text properties from the region."
|
|
|
|
|
(interactive "*r") ; error if buffer is read-only despite the next line.
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(set-text-properties start end nil)))
|
|
|
|
|
|
|
|
|
|
(defun facemenu-remove-special (start end)
|
|
|
|
|
"Remove all the \"special\" text properties from the region.
|
|
|
|
|
These special properties include `invisible', `intangible' and `read-only'."
|
|
|
|
|
(interactive "*r") ; error if buffer is read-only despite the next line.
|
|
|
|
|
(let ((inhibit-read-only t))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(remove-text-properties
|
2018-05-19 15:17:38 +00:00
|
|
|
|
start end '(invisible nil intangible nil read-only nil charset nil))))
|
2002-04-19 00:27:07 +00:00
|
|
|
|
|
2010-10-24 18:43:31 +00:00
|
|
|
|
(defalias 'facemenu-read-color 'read-color)
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
2010-06-14 16:03:04 +00:00
|
|
|
|
(defcustom list-colors-sort nil
|
|
|
|
|
"Color sort order for `list-colors-display'.
|
2015-05-21 17:04:45 +00:00
|
|
|
|
nil means default implementation-dependent order (defined in `x-colors').
|
2010-06-14 16:03:04 +00:00
|
|
|
|
`name' sorts by color name.
|
|
|
|
|
`rgb' sorts by red, green, blue components.
|
2010-06-15 11:05:06 +00:00
|
|
|
|
`(rgb-dist . COLOR)' sorts by the RGB distance to the specified color.
|
2010-06-14 16:03:04 +00:00
|
|
|
|
`hsv' sorts by hue, saturation, value.
|
2010-06-15 11:05:06 +00:00
|
|
|
|
`(hsv-dist . COLOR)' sorts by the HSV distance to the specified color
|
2012-09-30 16:36:42 +00:00
|
|
|
|
and excludes grayscale colors.
|
|
|
|
|
`luminance' sorts by relative luminance in the CIE XYZ color space."
|
2010-06-14 16:03:04 +00:00
|
|
|
|
:type '(choice (const :tag "Unsorted" nil)
|
|
|
|
|
(const :tag "Color Name" name)
|
|
|
|
|
(const :tag "Red-Green-Blue" rgb)
|
|
|
|
|
(cons :tag "Distance on RGB cube"
|
|
|
|
|
(const :tag "Distance from Color" rgb-dist)
|
|
|
|
|
(color :tag "Source Color Name"))
|
|
|
|
|
(const :tag "Hue-Saturation-Value" hsv)
|
|
|
|
|
(cons :tag "Distance on HSV cylinder"
|
|
|
|
|
(const :tag "Distance from Color" hsv-dist)
|
2012-09-30 16:36:42 +00:00
|
|
|
|
(color :tag "Source Color Name"))
|
|
|
|
|
(const :tag "Luminance" luminance))
|
2010-06-14 16:03:04 +00:00
|
|
|
|
:group 'facemenu
|
|
|
|
|
:version "24.1")
|
|
|
|
|
|
|
|
|
|
(defun list-colors-sort-key (color)
|
|
|
|
|
"Return a list of keys for sorting colors depending on `list-colors-sort'.
|
|
|
|
|
COLOR is the name of the color. When return value is nil,
|
|
|
|
|
filter out the color from the output."
|
2011-02-21 06:03:36 +00:00
|
|
|
|
(require 'color)
|
2010-06-14 16:03:04 +00:00
|
|
|
|
(cond
|
|
|
|
|
((null list-colors-sort) color)
|
|
|
|
|
((eq list-colors-sort 'name)
|
|
|
|
|
(downcase color))
|
|
|
|
|
((eq list-colors-sort 'rgb)
|
|
|
|
|
(color-values color))
|
|
|
|
|
((eq (car-safe list-colors-sort) 'rgb-dist)
|
|
|
|
|
(color-distance color (cdr list-colors-sort)))
|
|
|
|
|
((eq list-colors-sort 'hsv)
|
2011-02-21 06:03:36 +00:00
|
|
|
|
(apply 'color-rgb-to-hsv (color-name-to-rgb color)))
|
2010-06-14 16:03:04 +00:00
|
|
|
|
((eq (car-safe list-colors-sort) 'hsv-dist)
|
2011-02-21 06:03:36 +00:00
|
|
|
|
(let* ((c-rgb (color-name-to-rgb color))
|
2010-06-14 16:03:04 +00:00
|
|
|
|
(c-hsv (apply 'color-rgb-to-hsv c-rgb))
|
|
|
|
|
(o-hsv (apply 'color-rgb-to-hsv
|
2011-02-21 06:03:36 +00:00
|
|
|
|
(color-name-to-rgb (cdr list-colors-sort)))))
|
2010-06-14 16:03:04 +00:00
|
|
|
|
(unless (and (eq (nth 0 c-rgb) (nth 1 c-rgb)) ; exclude grayscale
|
|
|
|
|
(eq (nth 1 c-rgb) (nth 2 c-rgb)))
|
|
|
|
|
;; 3D Euclidean distance (sqrt is not needed for sorting)
|
|
|
|
|
(+ (expt (- 180 (abs (- 180 (abs (- (nth 0 c-hsv) ; wrap hue
|
|
|
|
|
(nth 0 o-hsv)))))) 2)
|
|
|
|
|
(expt (- (nth 1 c-hsv) (nth 1 o-hsv)) 2)
|
2012-09-30 16:36:42 +00:00
|
|
|
|
(expt (- (nth 2 c-hsv) (nth 2 o-hsv)) 2)))))
|
|
|
|
|
((eq list-colors-sort 'luminance)
|
|
|
|
|
(let ((c-rgb (color-name-to-rgb color)))
|
|
|
|
|
(+ (* (nth 0 c-rgb) 0.21266729)
|
|
|
|
|
(* (nth 1 c-rgb) 0.7151522)
|
|
|
|
|
(* (nth 2 c-rgb) 0.0721750))))))
|
2010-03-12 23:08:30 +00:00
|
|
|
|
|
2013-03-27 16:03:15 +00:00
|
|
|
|
(defvar list-colors-callback nil
|
|
|
|
|
"Value of CALLBACK arg passed to `list-colors-display'; internal use.")
|
|
|
|
|
|
|
|
|
|
(defun list-colors-redisplay (_ignore-auto _noconfirm)
|
|
|
|
|
"Redisplay the colors using `list-colors-sort'.
|
|
|
|
|
|
|
|
|
|
This is installed as a `revert-buffer-function' in the *Colors* buffer."
|
|
|
|
|
(list-colors-display nil (buffer-name) list-colors-callback))
|
|
|
|
|
|
2010-03-12 23:08:30 +00:00
|
|
|
|
(defun list-colors-display (&optional list buffer-name callback)
|
1995-04-16 04:15:39 +00:00
|
|
|
|
"Display names of defined colors, and show what they look like.
|
|
|
|
|
If the optional argument LIST is non-nil, it should be a list of
|
2005-01-11 23:53:35 +00:00
|
|
|
|
colors to display. Otherwise, this command computes a list of
|
2012-02-04 01:00:51 +00:00
|
|
|
|
colors that the current display can handle. Customize
|
|
|
|
|
`list-colors-sort' to change the order in which colors are shown.
|
2013-03-27 16:03:15 +00:00
|
|
|
|
Type `g' or \\[revert-buffer] after customizing `list-colors-sort'
|
|
|
|
|
to redisplay colors in the new order.
|
2010-03-12 23:08:30 +00:00
|
|
|
|
|
2012-02-04 01:00:51 +00:00
|
|
|
|
If the optional argument BUFFER-NAME is nil, it defaults to *Colors*.
|
2010-03-12 23:08:30 +00:00
|
|
|
|
|
|
|
|
|
If the optional argument CALLBACK is non-nil, it should be a
|
|
|
|
|
function to call each time the user types RET or clicks on a
|
2012-02-04 01:00:51 +00:00
|
|
|
|
color. The function should accept a single argument, the color name."
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(interactive)
|
2002-01-25 13:11:49 +00:00
|
|
|
|
(when (and (null list) (> (display-color-cells) 0))
|
2005-01-11 23:53:35 +00:00
|
|
|
|
(setq list (list-colors-duplicates (defined-colors)))
|
2010-06-14 16:03:04 +00:00
|
|
|
|
(when list-colors-sort
|
|
|
|
|
;; Schwartzian transform with `(color key1 key2 key3 ...)'.
|
|
|
|
|
(setq list (mapcar
|
|
|
|
|
'car
|
|
|
|
|
(sort (delq nil (mapcar
|
|
|
|
|
(lambda (c)
|
|
|
|
|
(let ((key (list-colors-sort-key
|
|
|
|
|
(car c))))
|
|
|
|
|
(when key
|
|
|
|
|
(cons c (if (consp key) key
|
|
|
|
|
(list key))))))
|
|
|
|
|
list))
|
|
|
|
|
(lambda (a b)
|
|
|
|
|
(let* ((a-keys (cdr a))
|
|
|
|
|
(b-keys (cdr b))
|
|
|
|
|
(a-key (car a-keys))
|
|
|
|
|
(b-key (car b-keys)))
|
|
|
|
|
;; Skip common keys at the beginning of key lists.
|
|
|
|
|
(while (and a-key b-key (equal a-key b-key))
|
|
|
|
|
(setq a-keys (cdr a-keys) a-key (car a-keys)
|
|
|
|
|
b-keys (cdr b-keys) b-key (car b-keys)))
|
|
|
|
|
(cond
|
|
|
|
|
((and (numberp a-key) (numberp b-key))
|
|
|
|
|
(< a-key b-key))
|
|
|
|
|
((and (stringp a-key) (stringp b-key))
|
|
|
|
|
(string< a-key b-key)))))))))
|
2002-05-09 18:05:10 +00:00
|
|
|
|
(when (memq (display-visual-class) '(gray-scale pseudo-color direct-color))
|
|
|
|
|
;; Don't show more than what the display can handle.
|
|
|
|
|
(let ((lc (nthcdr (1- (display-color-cells)) list)))
|
|
|
|
|
(if lc
|
|
|
|
|
(setcdr lc nil)))))
|
2011-02-27 23:53:41 +00:00
|
|
|
|
(unless buffer-name
|
|
|
|
|
(setq buffer-name "*Colors*"))
|
|
|
|
|
(with-help-window buffer-name
|
|
|
|
|
(with-current-buffer standard-output
|
2010-03-12 23:08:30 +00:00
|
|
|
|
(erase-buffer)
|
2011-03-19 21:37:21 +00:00
|
|
|
|
(list-colors-print list callback)
|
|
|
|
|
(set-buffer-modified-p nil)
|
2013-03-27 16:03:15 +00:00
|
|
|
|
(setq truncate-lines t)
|
|
|
|
|
(setq-local list-colors-callback callback)
|
|
|
|
|
(setq revert-buffer-function 'list-colors-redisplay)))
|
2011-03-19 21:37:21 +00:00
|
|
|
|
(when callback
|
|
|
|
|
(pop-to-buffer buffer-name)
|
|
|
|
|
(message "Click on a color to select it.")))
|
2010-03-12 23:08:30 +00:00
|
|
|
|
|
|
|
|
|
(defun list-colors-print (list &optional callback)
|
|
|
|
|
(let ((callback-fn
|
|
|
|
|
(if callback
|
|
|
|
|
`(lambda (button)
|
|
|
|
|
(funcall ,callback (button-get button 'color-name))))))
|
|
|
|
|
(dolist (color list)
|
|
|
|
|
(if (consp color)
|
|
|
|
|
(if (cdr color)
|
|
|
|
|
(setq color (sort color (lambda (a b)
|
|
|
|
|
(string< (downcase a)
|
|
|
|
|
(downcase b))))))
|
|
|
|
|
(setq color (list color)))
|
|
|
|
|
(let* ((opoint (point))
|
2020-06-10 17:18:58 +00:00
|
|
|
|
(fg (readable-foreground-color (car color))))
|
2010-03-12 23:08:30 +00:00
|
|
|
|
(insert (car color))
|
|
|
|
|
(indent-to 22)
|
2020-06-10 17:18:58 +00:00
|
|
|
|
(put-text-property opoint (point) 'face `(:background ,(car color)
|
|
|
|
|
:foreground ,fg))
|
2010-03-12 23:08:30 +00:00
|
|
|
|
(put-text-property
|
|
|
|
|
(prog1 (point)
|
2010-06-12 17:12:15 +00:00
|
|
|
|
(insert " ")
|
2011-03-19 21:37:21 +00:00
|
|
|
|
;; Insert all color names.
|
|
|
|
|
(insert (mapconcat 'identity color ",")))
|
2010-03-12 23:08:30 +00:00
|
|
|
|
(point)
|
|
|
|
|
'face (list :foreground (car color)))
|
2011-03-19 21:37:21 +00:00
|
|
|
|
(insert (propertize " " 'display '(space :align-to (- right 9))))
|
|
|
|
|
(insert " ")
|
2010-06-14 16:03:04 +00:00
|
|
|
|
(insert (propertize
|
|
|
|
|
(apply 'format "#%02x%02x%02x"
|
Audit use of lsh and fix glitches
I audited use of lsh in the Lisp source code, and fixed the
glitches that I found. While I was at it, I replaced uses of lsh
with ash when either will do. Replacement is OK when either
argument is known to be nonnegative, or when only the low-order
bits of the result matter, and is a (minor) win since ash is a bit
more solid than lsh nowadays, and is a bit faster.
* lisp/calc/calc-ext.el (math-check-fixnum):
Prefer most-positive-fixnum to (lsh -1 -1).
* lisp/vc/vc-hg.el (vc-hg-state-fast): When testing fixnum width,
prefer (zerop (ash most-positive-fixnum -32)) to (zerop (lsh -1
32)) (Bug#32485#11).
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode):
Tighten sanity-check for bytecode overflow, by checking that the
result of (ash pc -8) is nonnegative. Formerly this check was not
needed since lsh was used and the number overflowed differently.
* lisp/net/dns.el (dns-write): Fix some obvious sign typos in
shift counts. Evidently this part of the code has never been
exercised.
* lisp/progmodes/hideif.el (hif-shiftleft, hif-shiftright):
* lisp/term/common-win.el (x-setup-function-keys):
Simplify.
* admin/unidata/unidata-gen.el, admin/unidata/uvs.el:
* doc/lispref/keymaps.texi, doc/lispref/syntax.texi:
* doc/misc/calc.texi, doc/misc/cl.texi, etc/NEWS.19:
* lisp/arc-mode.el, lisp/calc/calc-bin.el, lisp/calc/calc-comb.el:
* lisp/calc/calc-ext.el, lisp/calc/calc-math.el:
* lisp/cedet/semantic/wisent/comp.el, lisp/composite.el:
* lisp/disp-table.el, lisp/dos-fns.el, lisp/edmacro.el:
* lisp/emacs-lisp/bindat.el, lisp/emacs-lisp/byte-opt.el:
* lisp/emacs-lisp/bytecomp.el, lisp/emacs-lisp/cl-extra.el:
* lisp/erc/erc-dcc.el, lisp/facemenu.el, lisp/gnus/message.el:
* lisp/gnus/nndoc.el, lisp/gnus/nnmaildir.el, lisp/image.el:
* lisp/international/ccl.el, lisp/international/fontset.el:
* lisp/international/mule-cmds.el, lisp/international/mule.el:
* lisp/json.el, lisp/mail/binhex.el, lisp/mail/rmail.el:
* lisp/mail/uudecode.el, lisp/md4.el, lisp/net/dns.el:
* lisp/net/ntlm.el, lisp/net/sasl.el, lisp/net/socks.el:
* lisp/net/tramp.el, lisp/obsolete/levents.el:
* lisp/obsolete/pgg-parse.el, lisp/org/org.el:
* lisp/org/ox-publish.el, lisp/progmodes/cc-defs.el:
* lisp/progmodes/ebnf2ps.el, lisp/progmodes/hideif.el:
* lisp/ps-bdf.el, lisp/ps-print.el, lisp/simple.el:
* lisp/tar-mode.el, lisp/term/common-win.el:
* lisp/term/tty-colors.el, lisp/term/xterm.el, lisp/vc/vc-git.el:
* lisp/vc/vc-hg.el, lisp/x-dnd.el, test/src/data-tests.el:
Prefer ash to lsh when either will do.
2018-08-21 20:44:03 +00:00
|
|
|
|
(mapcar (lambda (c) (ash c -8))
|
2020-06-10 17:18:58 +00:00
|
|
|
|
(color-values (car color))))
|
2010-06-14 16:03:04 +00:00
|
|
|
|
'mouse-face 'highlight
|
|
|
|
|
'help-echo
|
|
|
|
|
(let ((hsv (apply 'color-rgb-to-hsv
|
2011-02-21 06:03:36 +00:00
|
|
|
|
(color-name-to-rgb (car color)))))
|
2014-07-08 08:55:00 +00:00
|
|
|
|
(format "H:%.2f S:%.2f V:%.2f"
|
2010-06-14 16:03:04 +00:00
|
|
|
|
(nth 0 hsv) (nth 1 hsv) (nth 2 hsv)))))
|
2010-03-12 23:08:30 +00:00
|
|
|
|
(when callback
|
|
|
|
|
(make-text-button
|
|
|
|
|
opoint (point)
|
|
|
|
|
'follow-link t
|
|
|
|
|
'mouse-face (list :background (car color)
|
2020-06-10 17:18:58 +00:00
|
|
|
|
:foreground fg)
|
2010-03-12 23:08:30 +00:00
|
|
|
|
'color-name (car color)
|
|
|
|
|
'action callback-fn)))
|
|
|
|
|
(insert "\n"))
|
|
|
|
|
(goto-char (point-min))))
|
|
|
|
|
|
2005-01-11 23:53:35 +00:00
|
|
|
|
|
|
|
|
|
(defun list-colors-duplicates (&optional list)
|
|
|
|
|
"Return a list of colors with grouped duplicate colors.
|
|
|
|
|
If a color has no duplicates, then the element of the returned list
|
2015-11-17 23:28:50 +00:00
|
|
|
|
has the form (COLOR-NAME). The element of the returned list with
|
|
|
|
|
duplicate colors has the form (COLOR-NAME DUPLICATE-COLOR-NAME ...).
|
2005-01-11 23:53:35 +00:00
|
|
|
|
This function uses the predicate `facemenu-color-equal' to compare
|
|
|
|
|
color names. If the optional argument LIST is non-nil, it should
|
|
|
|
|
be a list of colors to display. Otherwise, this function uses
|
|
|
|
|
a list of colors that the current display can handle."
|
|
|
|
|
(let* ((list (mapcar 'list (or list (defined-colors))))
|
|
|
|
|
(l list))
|
|
|
|
|
(while (cdr l)
|
|
|
|
|
(if (and (facemenu-color-equal (car (car l)) (car (car (cdr l))))
|
2011-10-18 14:31:27 +00:00
|
|
|
|
;; On MS-Windows, there are logical colors that might have
|
|
|
|
|
;; the same value but different names and meanings. For
|
|
|
|
|
;; example, `SystemMenuText' (the color w32 uses for the
|
|
|
|
|
;; text in menu entries) and `SystemWindowText' (the default
|
|
|
|
|
;; color w32 uses for the text in windows and dialogs) may
|
|
|
|
|
;; be the same display color and be adjacent in the list.
|
2011-10-24 19:29:19 +00:00
|
|
|
|
;; These system colors all have names prefixed with "System",
|
|
|
|
|
;; which is hardcoded in w32fns.c (SYSTEM_COLOR_PREFIX).
|
2011-10-18 14:31:27 +00:00
|
|
|
|
;; This makes them different to any other color. Bug#9722
|
|
|
|
|
(not (and (eq system-type 'windows-nt)
|
|
|
|
|
(string-match-p "^System" (car (car l))))))
|
2005-01-11 23:53:35 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setcdr (car l) (cons (car (car (cdr l))) (cdr (car l))))
|
|
|
|
|
(setcdr l (cdr (cdr l))))
|
|
|
|
|
(setq l (cdr l))))
|
|
|
|
|
list))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-color-equal (a b)
|
|
|
|
|
"Return t if colors A and B are the same color.
|
1995-04-16 04:15:39 +00:00
|
|
|
|
A and B should be strings naming colors.
|
Changes for automatic remapping of X colors on terminal frames:
* term/pc-win.el (msdos-setup-initial-frame): New function, run by
term-setup-hook. Call msdos-remember-default-colors and
msdos-handle-reverse-video.
(msdos-face-setup): Parts of code moved to
msdos-setup-initial-frame.
(msdos-handle-reverse-video): New function, modeled after
x-handle-reverse-video.
(make-msdos-frame): Don't use initial-frame-alist and
default-frame-alist. Call msdos-handle-reverse-video.
(msdos-color-aliases): Remove.
(msdos-color-translate, msdos-approximate-color): Remove.
(msdos-color-values): Use 16-bit RGB values. RGB values updated
for better approximation of X colors.
(msdos-face-setup): Call tty-color-clear. Remove code that sets
up tty-color-alist (it is now on startup.el).
(x-display-color-p, x-color-defined-p, x-color-values,
x-defined-colors, face-color-supported-p, face-color-gray-p):
Remove.
* facemenu.el (facemenu-read-color, list-colors-display): Use
defined-colors for all frame types.
(facemenu-color-equal): Use color-values for all frame types.
* faces.el (read-face-attribute): For :foreground and :background
attributes and frames on character terminals, translate the color
to the closest supported one before looking it up in the list of
valid values.
(face-valid-attribute-values): Call defined-colors for all types
of frames.
(defined-colors, color-defined-p, color-values, display-color-p):
New finctions.
(x-defined-colors, x-color-defined-p, x-color-values,
x-display-color-p): Aliases for the above.
* startup.el (command-line): Register terminal colors for frame
types other than x and w32, but only if the terminal supports
colors. Call tty-color-define instead of face-register-tty-color.
* term/x-win.el (xw-defined-colors): Renamed from
x-defined-colors.
* term/w32-win.el (xw-defined-colors): Likewise.
* term/tty-colors.el: New file.
* loadup.el: Load term/tty-colors.
1999-12-06 17:55:00 +00:00
|
|
|
|
This function queries the display system to find out what the color
|
|
|
|
|
names mean. It returns nil if the colors differ or if it can't
|
1995-04-16 04:15:39 +00:00
|
|
|
|
determine the correct answer."
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(cond ((equal a b) t)
|
Changes for automatic remapping of X colors on terminal frames:
* term/pc-win.el (msdos-setup-initial-frame): New function, run by
term-setup-hook. Call msdos-remember-default-colors and
msdos-handle-reverse-video.
(msdos-face-setup): Parts of code moved to
msdos-setup-initial-frame.
(msdos-handle-reverse-video): New function, modeled after
x-handle-reverse-video.
(make-msdos-frame): Don't use initial-frame-alist and
default-frame-alist. Call msdos-handle-reverse-video.
(msdos-color-aliases): Remove.
(msdos-color-translate, msdos-approximate-color): Remove.
(msdos-color-values): Use 16-bit RGB values. RGB values updated
for better approximation of X colors.
(msdos-face-setup): Call tty-color-clear. Remove code that sets
up tty-color-alist (it is now on startup.el).
(x-display-color-p, x-color-defined-p, x-color-values,
x-defined-colors, face-color-supported-p, face-color-gray-p):
Remove.
* facemenu.el (facemenu-read-color, list-colors-display): Use
defined-colors for all frame types.
(facemenu-color-equal): Use color-values for all frame types.
* faces.el (read-face-attribute): For :foreground and :background
attributes and frames on character terminals, translate the color
to the closest supported one before looking it up in the list of
valid values.
(face-valid-attribute-values): Call defined-colors for all types
of frames.
(defined-colors, color-defined-p, color-values, display-color-p):
New finctions.
(x-defined-colors, x-color-defined-p, x-color-values,
x-display-color-p): Aliases for the above.
* startup.el (command-line): Register terminal colors for frame
types other than x and w32, but only if the terminal supports
colors. Call tty-color-define instead of face-register-tty-color.
* term/x-win.el (xw-defined-colors): Renamed from
x-defined-colors.
* term/w32-win.el (xw-defined-colors): Likewise.
* term/tty-colors.el: New file.
* loadup.el: Load term/tty-colors.
1999-12-06 17:55:00 +00:00
|
|
|
|
((equal (color-values a) (color-values b)))))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
|
2010-08-19 15:43:45 +00:00
|
|
|
|
|
|
|
|
|
(defvar facemenu-self-insert-data nil)
|
|
|
|
|
|
|
|
|
|
(defun facemenu-post-self-insert-function ()
|
|
|
|
|
(when (and (car facemenu-self-insert-data)
|
|
|
|
|
(eq last-command (cdr facemenu-self-insert-data)))
|
|
|
|
|
(put-text-property (1- (point)) (point)
|
|
|
|
|
'face (car facemenu-self-insert-data))
|
|
|
|
|
(setq facemenu-self-insert-data nil))
|
|
|
|
|
(remove-hook 'post-self-insert-hook 'facemenu-post-self-insert-function))
|
|
|
|
|
|
|
|
|
|
(defun facemenu-set-self-insert-face (face)
|
|
|
|
|
"Arrange for the next self-inserted char to have face `face'."
|
|
|
|
|
(setq facemenu-self-insert-data (cons face this-command))
|
|
|
|
|
(add-hook 'post-self-insert-hook 'facemenu-post-self-insert-function))
|
|
|
|
|
|
1996-01-02 23:04:06 +00:00
|
|
|
|
(defun facemenu-add-face (face &optional start end)
|
1994-10-12 23:23:23 +00:00
|
|
|
|
"Add FACE to text between START and END.
|
2000-07-06 13:58:49 +00:00
|
|
|
|
If START is nil or START to END is empty, add FACE to next typed character
|
1996-01-02 23:04:06 +00:00
|
|
|
|
instead. For each section of that region that has a different face property,
|
|
|
|
|
FACE will be consed onto it, and other faces that are completely hidden by
|
|
|
|
|
that will be removed from the list.
|
2002-03-14 08:52:16 +00:00
|
|
|
|
If `facemenu-add-face-function' and maybe `facemenu-end-add-face' are non-nil,
|
1996-01-02 23:04:06 +00:00
|
|
|
|
they are used to set the face information.
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
|
|
|
|
As a special case, if FACE is `default', then the region is left with NO face
|
|
|
|
|
text property. Otherwise, selecting the default face would not have any
|
1996-01-02 23:04:06 +00:00
|
|
|
|
effect. See `facemenu-remove-face-function'."
|
|
|
|
|
(interactive "*xFace: \nr")
|
2010-08-19 15:43:45 +00:00
|
|
|
|
(cond
|
|
|
|
|
((and (eq face 'default)
|
|
|
|
|
(not (eq facemenu-remove-face-function t)))
|
|
|
|
|
(if facemenu-remove-face-function
|
|
|
|
|
(funcall facemenu-remove-face-function start end)
|
1996-01-02 23:04:06 +00:00
|
|
|
|
(if (and start (< start end))
|
2019-08-01 12:59:46 +00:00
|
|
|
|
(remove-list-of-text-properties start end '(face))
|
2010-08-19 15:43:45 +00:00
|
|
|
|
(facemenu-set-self-insert-face 'default))))
|
|
|
|
|
(facemenu-add-face-function
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if end (goto-char end))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if start (goto-char start))
|
|
|
|
|
(insert-before-markers
|
|
|
|
|
(funcall facemenu-add-face-function face end)))
|
|
|
|
|
(if facemenu-end-add-face
|
|
|
|
|
(insert (if (stringp facemenu-end-add-face)
|
|
|
|
|
facemenu-end-add-face
|
|
|
|
|
(funcall facemenu-end-add-face face))))))
|
|
|
|
|
((and start (< start end))
|
|
|
|
|
(let ((part-start start) part-end)
|
|
|
|
|
(while (not (= part-start end))
|
|
|
|
|
(setq part-end (next-single-property-change part-start 'face
|
|
|
|
|
nil end))
|
|
|
|
|
(let ((prev (get-text-property part-start 'face)))
|
|
|
|
|
(put-text-property part-start part-end 'face
|
|
|
|
|
(if (null prev)
|
|
|
|
|
face
|
|
|
|
|
(facemenu-active-faces
|
|
|
|
|
(cons face
|
2015-02-26 18:09:48 +00:00
|
|
|
|
(if (face-list-p prev)
|
2010-08-19 15:43:45 +00:00
|
|
|
|
prev
|
|
|
|
|
(list prev)))
|
|
|
|
|
;; Specify the selected frame
|
|
|
|
|
;; because nil would mean to use
|
|
|
|
|
;; the new-frame default settings,
|
|
|
|
|
;; and those are usually nil.
|
|
|
|
|
(selected-frame)))))
|
|
|
|
|
(setq part-start part-end))))
|
|
|
|
|
(t
|
|
|
|
|
(facemenu-set-self-insert-face
|
|
|
|
|
(if (eq last-command (cdr facemenu-self-insert-data))
|
|
|
|
|
(cons face (if (listp (car facemenu-self-insert-data))
|
|
|
|
|
(car facemenu-self-insert-data)
|
|
|
|
|
(list (car facemenu-self-insert-data))))
|
|
|
|
|
face))))
|
2005-06-28 18:55:48 +00:00
|
|
|
|
(unless (facemenu-enable-faces-p)
|
|
|
|
|
(message "Font-lock mode will override any faces you set in this buffer")))
|
1994-10-12 23:23:23 +00:00
|
|
|
|
|
1995-11-10 18:59:43 +00:00
|
|
|
|
(defun facemenu-active-faces (face-list &optional frame)
|
|
|
|
|
"Return from FACE-LIST those faces that would be used for display.
|
|
|
|
|
This means each face attribute is not specified in a face earlier in FACE-LIST
|
|
|
|
|
and such a face is therefore active when used to display text.
|
|
|
|
|
If the optional argument FRAME is given, use the faces in that frame; otherwise
|
|
|
|
|
use the selected frame. If t, then the global, non-frame faces are used."
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(let* ((mask-atts (copy-sequence
|
|
|
|
|
(if (consp (car face-list))
|
2002-01-02 22:56:12 +00:00
|
|
|
|
(face-attributes-as-vector (car face-list))
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(or (internal-lisp-face-p (car face-list) frame)
|
|
|
|
|
(check-face (car face-list))))))
|
1995-11-10 18:59:43 +00:00
|
|
|
|
(active-list (list (car face-list)))
|
|
|
|
|
(face-list (cdr face-list))
|
|
|
|
|
(mask-len (length mask-atts)))
|
|
|
|
|
(while face-list
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(if (let ((face-atts
|
|
|
|
|
(if (consp (car face-list))
|
2002-01-02 22:56:12 +00:00
|
|
|
|
(face-attributes-as-vector (car face-list))
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(or (internal-lisp-face-p (car face-list) frame)
|
|
|
|
|
(check-face (car face-list)))))
|
|
|
|
|
(i mask-len)
|
|
|
|
|
(useful nil))
|
2004-09-04 19:13:40 +00:00
|
|
|
|
(while (>= (setq i (1- i)) 0)
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(and (not (memq (aref face-atts i) '(nil unspecified)))
|
|
|
|
|
(memq (aref mask-atts i) '(nil unspecified))
|
1995-11-10 18:59:43 +00:00
|
|
|
|
(aset mask-atts i (setq useful t))))
|
|
|
|
|
useful)
|
|
|
|
|
(setq active-list (cons (car face-list) active-list)))
|
|
|
|
|
(setq face-list (cdr face-list)))
|
|
|
|
|
(nreverse active-list)))
|
1994-10-12 23:23:23 +00:00
|
|
|
|
|
2002-04-15 22:05:52 +00:00
|
|
|
|
(defun facemenu-add-new-face (face)
|
2006-08-10 04:00:34 +00:00
|
|
|
|
"Add FACE (a face) to the Face menu if `facemenu-listed-faces' says so.
|
|
|
|
|
This is called whenever you create a new face, and at other times."
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(let* (name
|
|
|
|
|
symbol
|
2002-04-15 22:05:52 +00:00
|
|
|
|
menu docstring
|
|
|
|
|
(key (cdr (assoc face facemenu-keybindings)))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
function menu-val)
|
2002-04-15 22:05:52 +00:00
|
|
|
|
(if (symbolp face)
|
|
|
|
|
(setq name (symbol-name face)
|
|
|
|
|
symbol face)
|
|
|
|
|
(setq name face
|
2001-10-25 01:08:52 +00:00
|
|
|
|
symbol (intern name)))
|
2002-04-15 22:05:52 +00:00
|
|
|
|
(setq menu 'facemenu-face-menu)
|
|
|
|
|
(setq docstring
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
|
(purecopy (format "Select face `%s' for subsequent insertion.
|
2006-11-28 02:19:58 +00:00
|
|
|
|
If the mark is active and there is no prefix argument,
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
|
apply face `%s' to the region instead.
|
|
|
|
|
This command was defined by `facemenu-add-new-face'."
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
name name)))
|
2006-07-03 14:31:35 +00:00
|
|
|
|
(cond ((facemenu-iterate ; check if equivalent face is already in the menu
|
|
|
|
|
(lambda (m) (and (listp m)
|
|
|
|
|
(symbolp (car m))
|
2006-10-18 10:51:00 +00:00
|
|
|
|
;; Avoid error in face-equal
|
|
|
|
|
;; when a non-face is erroneously present.
|
|
|
|
|
(facep (car m))
|
2006-07-03 14:31:35 +00:00
|
|
|
|
(face-equal (car m) symbol)))
|
|
|
|
|
(cdr (symbol-function menu))))
|
|
|
|
|
;; Faces with a keyboard equivalent. These go at the front.
|
|
|
|
|
(key
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(setq function (intern (concat "facemenu-set-" name)))
|
|
|
|
|
(fset function
|
1997-04-25 04:46:19 +00:00
|
|
|
|
`(lambda ()
|
|
|
|
|
,docstring
|
|
|
|
|
(interactive)
|
2002-03-14 08:52:16 +00:00
|
|
|
|
(facemenu-set-face
|
|
|
|
|
(quote ,symbol)
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-beginning))
|
|
|
|
|
(if (and mark-active (not current-prefix-arg))
|
|
|
|
|
(region-end)))))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(define-key 'facemenu-keymap key (cons name function))
|
|
|
|
|
(define-key menu key (cons name function)))
|
2006-07-03 14:31:35 +00:00
|
|
|
|
;; Faces with no keyboard equivalent. Figure out where to put it:
|
|
|
|
|
((or (eq t facemenu-listed-faces)
|
|
|
|
|
(memq symbol facemenu-listed-faces))
|
2001-10-24 22:53:45 +00:00
|
|
|
|
(setq key (vector symbol)
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
function 'facemenu-set-face-from-menu
|
|
|
|
|
menu-val (symbol-function menu))
|
|
|
|
|
(if (and facemenu-new-faces-at-end
|
2006-07-03 14:31:35 +00:00
|
|
|
|
(> (length menu-val) 3))
|
(facemenu-keybindings, facemenu-face-menu):
Keybinding for bold-italic changed from M-g o to M-g l; M-g o is
now "other".
(facemenu-justification-menu, facemenu-indentation-menu):
New submenus, moved from enriched.el
(list-colors-display, facemenu-color-equal): New functions.
(facemenu-menu): Added "Display Faces" item.
(facemenu-new-faces-at-end): New variable.
(facemenu-add-new-face): Obey facemenu-new-faces-at-end.
(facemenu-menu, facemenu-keymap, facemenu-face-menu)
(facemenu-foreground-menu, facemenu-background-menu)
(facemenu-special-menu): Now have function definitions as prefix keys.
(facemenu-menu, facemenu-update): Refer to submenus by their names
rather than including their values.
(facemenu-set-face): Error if read-only; add item to menu if necessary.
(facemenu-get-face): Always return FACE.
(facemenu-add-new-face): Don't add if facemenu-unlisted-faces is t.
(facemenu-unlisted-faces): Doc fix.
Revise keybindings; doc fix.
(facemenu-new-faces-at-end): New vbl. (facemenu-add-new-face): Use it.
(facemenu-set-face, facemenu-set-face-from-menu): Check read-only.
(facemenu-set-face): Doc fix.
(facemenu-face-menu, facemenu-foreground-menu,
facemenu-background-menu, facemenu-special-menu): New or renamed
variables for submenus.
(facemenu-color-alist): Renamed from facemenu-colors.
(facemenu-add-new-face): New function.
(facemenu-update): Don't redo top-level menu;
nothing should change. Move menu setup to defvars. Use
facemenu-add-new-face. Changed global binding to C-down-mouse-3.
(facemenu-menu): "Update" item removed; should
no longer be needed interactively.
(facemenu-complete-face-list): Just return faces, not keybindings.
1995-01-22 16:47:10 +00:00
|
|
|
|
(define-key-after menu-val key (cons name function)
|
2002-04-15 22:05:52 +00:00
|
|
|
|
(car (nth (- (length menu-val) 3) menu-val)))
|
|
|
|
|
(define-key menu key (cons name function))))))
|
|
|
|
|
nil) ; Return nil for facemenu-iterate
|
|
|
|
|
|
2005-06-27 07:31:49 +00:00
|
|
|
|
(defun facemenu-add-new-color (color menu)
|
2002-04-15 22:05:52 +00:00
|
|
|
|
"Add COLOR (a color name string) to the appropriate Face menu.
|
2005-06-27 07:31:49 +00:00
|
|
|
|
MENU should be `facemenu-foreground-menu' or `facemenu-background-menu'.
|
2005-07-01 08:30:30 +00:00
|
|
|
|
Return the event type (a symbol) of the added menu entry.
|
2002-04-15 22:05:52 +00:00
|
|
|
|
|
|
|
|
|
This is called whenever you use a new color."
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(let (symbol)
|
2005-06-27 07:31:49 +00:00
|
|
|
|
(unless (color-defined-p color)
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
|
(error "Color `%s' undefined" color))
|
2002-04-15 22:05:52 +00:00
|
|
|
|
(cond ((eq menu 'facemenu-foreground-menu)
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(setq symbol (intern (concat "fg:" color))))
|
2002-04-15 22:05:52 +00:00
|
|
|
|
((eq menu 'facemenu-background-menu)
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(setq symbol (intern (concat "bg:" color))))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
|
(t (error "MENU should be `facemenu-foreground-menu' or `facemenu-background-menu'")))
|
2005-07-01 08:30:30 +00:00
|
|
|
|
(unless (facemenu-iterate ; Check if color is already in the menu.
|
|
|
|
|
(lambda (m) (and (listp m)
|
|
|
|
|
(eq (car m) symbol)))
|
|
|
|
|
(cdr (symbol-function menu)))
|
|
|
|
|
;; Color is not in the menu. Figure out where to put it.
|
|
|
|
|
(let ((key (vector symbol))
|
|
|
|
|
(function 'facemenu-set-face-from-menu)
|
|
|
|
|
(menu-val (symbol-function menu)))
|
|
|
|
|
(if (and facemenu-new-faces-at-end
|
|
|
|
|
(> (length menu-val) 3))
|
|
|
|
|
(define-key-after menu-val key (cons color function)
|
|
|
|
|
(car (nth (- (length menu-val) 3) menu-val)))
|
|
|
|
|
(define-key menu key (cons color function)))))
|
2005-06-27 07:31:49 +00:00
|
|
|
|
symbol))
|
1994-10-20 18:15:25 +00:00
|
|
|
|
|
|
|
|
|
(defun facemenu-complete-face-list (&optional oldlist)
|
1996-06-08 00:55:46 +00:00
|
|
|
|
"Return list of all faces that look different.
|
2003-02-04 11:26:42 +00:00
|
|
|
|
Starts with given ALIST of faces, and adds elements only if they display
|
1994-10-20 18:15:25 +00:00
|
|
|
|
differently from any face already on the list.
|
2003-02-04 11:26:42 +00:00
|
|
|
|
The faces on ALIST will end up at the end of the returned list, in reverse
|
1994-10-20 18:15:25 +00:00
|
|
|
|
order."
|
|
|
|
|
(let ((list (nreverse (mapcar 'car oldlist))))
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(facemenu-iterate
|
|
|
|
|
(lambda (new-face)
|
1994-10-20 18:15:25 +00:00
|
|
|
|
(if (not (memq new-face list))
|
|
|
|
|
(setq list (cons new-face list)))
|
|
|
|
|
nil)
|
|
|
|
|
(nreverse (face-list)))
|
|
|
|
|
list))
|
|
|
|
|
|
2000-07-06 13:58:49 +00:00
|
|
|
|
(defun facemenu-iterate (func list)
|
1994-09-14 19:32:18 +00:00
|
|
|
|
"Apply FUNC to each element of LIST until one returns non-nil.
|
|
|
|
|
Returns the non-nil value it found, or nil if all were nil."
|
2000-07-06 13:58:49 +00:00
|
|
|
|
(while (and list (not (funcall func (car list))))
|
|
|
|
|
(setq list (cdr list)))
|
|
|
|
|
(car list))
|
1994-09-14 19:32:18 +00:00
|
|
|
|
|
|
|
|
|
(facemenu-update)
|
|
|
|
|
|
2002-07-08 01:21:41 +00:00
|
|
|
|
(provide 'facemenu)
|
2003-09-01 15:45:59 +00:00
|
|
|
|
|
1994-09-14 19:32:18 +00:00
|
|
|
|
;;; facemenu.el ends here
|