]> git.eshelyaron.com Git - emacs.git/commitdiff
(face-font-selection-order)
authorAndreas Schwab <schwab@suse.de>
Sat, 7 Dec 2002 20:57:53 +0000 (20:57 +0000)
committerAndreas Schwab <schwab@suse.de>
Sat, 7 Dec 2002 20:57:53 +0000 (20:57 +0000)
(face-font-family-alternatives, face-font-registry-alternatives):
Remove period from :tag value.

lisp/ChangeLog
lisp/faces.el

index 9e64025e05606b3bb218f0bb09a47170741722a4..4f379c38c6567be26bff7605cf587ee40f787f21 100644 (file)
@@ -1,5 +1,9 @@
 2002-12-07  Andreas Schwab  <schwab@suse.de>
 
+       * faces.el (face-font-selection-order)
+       (face-font-family-alternatives, face-font-registry-alternatives):
+       Remove period from :tag value.
+
        * cus-edit.el (custom-face-edit-fix-value): Change :reverse-video
        to :inverse-video.
 
index 028ea671bd78c5ae6e7da7ae9467e3147af09c6e..8cc69cbea7d4340c5fc365e3418e1a2305669f74 100644 (file)
@@ -52,7 +52,7 @@ those face attributes first that appear first in the list.  For
 example, if `:slant' appears before `:height', font selection first
 tries to find a font with a suitable slant, even if this results in
 a font height that isn't optimal."
-  :tag "Font selection order."
+  :tag "Font selection order"
   :type '(list symbol symbol symbol symbol)
   :group 'font-selection
   :set #'(lambda (symbol value)
@@ -68,7 +68,7 @@ a font height that isn't optimal."
 Each element has the form (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...).
 If fonts of family FAMILY can't be loaded, try ALTERNATIVE1, then
 ALTERNATIVE2 etc."
-  :tag "Alternative font families to try."
+  :tag "Alternative font families to try"
   :type '(repeat (repeat string))
   :group 'font-selection
   :set #'(lambda (symbol value)
@@ -93,7 +93,7 @@ Each element has the form (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...).
 If fonts of registry REGISTRY can be loaded, font selection
 tries to find a best matching font among all fonts of registry
 REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
-  :tag "Alternative font registries to try."
+  :tag "Alternative font registries to try"
   :type '(repeat (repeat string))
   :version "21.1"
   :group 'font-selection