1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-14 16:50:58 +00:00

Fix typos.

* faces.el (set-face-attribute): Fix typo in docstring.
  (face-valid-attribute-values): Reflow docstring.

* cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
This commit is contained in:
Juanma Barranquero 2010-03-24 01:17:31 +01:00
parent c333f279e5
commit c6f3804c03
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2010-03-24 Juanma Barranquero <lekktu@gmail.com>
* faces.el (set-face-attribute): Fix typo in docstring.
(face-valid-attribute-values): Reflow docstring.
* cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
2010-03-23 Glenn Morris <rgm@gnu.org> 2010-03-23 Glenn Morris <rgm@gnu.org>
* textmodes/flyspell.el (sgml-lexical-context): Autoload it. (Bug#5752) * textmodes/flyspell.el (sgml-lexical-context): Autoload it. (Bug#5752)

View File

@ -66,7 +66,7 @@ Format is from the `file-attributes' function.")
If this is nil, then this template table belongs to a set of generic If this is nil, then this template table belongs to a set of generic
templates that can be used with no additional dictionary values. templates that can be used with no additional dictionary values.
When it is non-nil, it is assumed the template macros need specialized When it is non-nil, it is assumed the template macros need specialized
Emacs Lisp code to fill in the dictoinary.") Emacs Lisp code to fill in the dictionary.")
(priority :initarg :priority (priority :initarg :priority
:type number :type number
:documentation :documentation

View File

@ -590,7 +590,7 @@ the default for new frames (this is done automatically each time an
attribute is changed on all frames). attribute is changed on all frames).
ARGS must come in pairs ATTRIBUTE VALUE. ATTRIBUTE must be a valid ARGS must come in pairs ATTRIBUTE VALUE. ATTRIBUTE must be a valid
face attribute name. All attributes can be set to `unspecified'; face attribute name. All attributes can be set to `unspecified';
this fact is not further mentioned below. this fact is not further mentioned below.
The following attributes are recognized: The following attributes are recognized:
@ -988,9 +988,9 @@ Otherwise, return a single face."
(defun face-valid-attribute-values (attribute &optional frame) (defun face-valid-attribute-values (attribute &optional frame)
"Return valid values for face attribute ATTRIBUTE. "Return valid values for face attribute ATTRIBUTE.
The optional argument FRAME is used to determine available fonts The optional argument FRAME is used to determine available fonts
and colors. If it is nil or not specified, the selected frame is and colors. If it is nil or not specified, the selected frame is used.
used. Value is an alist of (NAME . VALUE) if ATTRIBUTE expects a value Value is an alist of (NAME . VALUE) if ATTRIBUTE expects a value out
out of a set of discrete values. Value is `integerp' if ATTRIBUTE expects of a set of discrete values. Value is `integerp' if ATTRIBUTE expects
an integer value." an integer value."
(let ((valid (let ((valid
(case attribute (case attribute