]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdisplay_supports_face_attributes_p): Fix typo in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 9 Jun 2005 10:39:02 +0000 (10:39 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 9 Jun 2005 10:39:02 +0000 (10:39 +0000)
src/ChangeLog
src/xfaces.c

index 2d506df58cb1140d2a3a8652a7c6ac146c17548c..4c43422e660095431339e546516d6753144b12e3 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-09  Juanma Barranquero  <lekktu@gmail.com>
+
+       * xfaces.c (Fdisplay_supports_face_attributes_p):
+       Fix typo in docstring.
+
 2005-06-08  Steven Tamm  <steventamm@mac.com>
 
        * unexmacosx.c (copy_data_segment): Copy __la_sym_ptr2 section
@@ -63,7 +68,7 @@
        * macterm.c: Make mac_quit_char_modifiers and mac_quit_char_keycode
        non-static.
 
-       * config.in: Added HAVE_CANCELMENUTRACKING
+       * config.in: Add HAVE_CANCELMENUTRACKING.
 
 2005-06-06  Eli Zaretskii  <eliz@gnu.org>
 
        * sound.c: Added a partial implementation of play-sound-internal
        for Microsoft Windows.  Added various #ifdef / #else / #endif
        code blocks to separate the code that will compile under
-       Microsoft Windows from the code that is specific to Gnu/Linux.
+       Microsoft Windows from the code that is specific to GNU/Linux.
        Moved several blocks of code around to make this separation of code
-       into Windows compatible and Gnu/Linux compatible code blocks easier.
+       into Windows compatible and GNU/Linux compatible code blocks easier.
 
        * makefile.w32-in: Include sound.c and link with WinMM.lib.
 
index 606a854980ad7c6c6146dd9557e167f00ece3bc7..11e72ab7d051e78f7fbb02b761e46324d7936349 100644 (file)
@@ -6109,7 +6109,7 @@ DEFUN ("display-supports-face-attributes-p",
        1, 2, 0,
        doc: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
 The optional argument DISPLAY can be a display name, a frame, or
-nil (meaning the selected frame's display)
+nil (meaning the selected frame's display).
 
 The definition of `supported' is somewhat heuristic, but basically means
 that a face containing all the attributes in ATTRIBUTES, when merged
@@ -6122,7 +6122,7 @@ Point (2) implies that a `:weight black' attribute will be satisfied by
 any display that can display bold, and a `:foreground \"yellow\"' as long
 as it can display a yellowish color, but `:slant italic' will _not_ be
 satisfied by the tty display code's automatic substitution of a `dim'
-face for italic. */)
+face for italic.  */)
   (attributes, display)
      Lisp_Object attributes, display;
 {