1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

lisp/frameset.el (frameset-p, frameset-prop): Doc fixes.

This commit is contained in:
Juanma Barranquero 2013-08-08 05:54:41 +02:00
parent c735544ced
commit bd0c3c0b12
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2013-08-08 Juanma Barranquero <lekktu@gmail.com>
* frameset.el (frameset-p, frameset-prop): Doc fixes.
2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,

View File

@ -104,8 +104,7 @@ FRAMESET is copied with `copy-tree'."
;;;###autoload
(defun frameset-p (object)
"If OBJECT is a frameset, return its version number.
Else return nil."
"Return non-nil if OBJECT is a frameset, nil otherwise."
(and (vectorp object) ; a vector
(eq (aref object 0) 'frameset) ; tagged as `frameset'
(integerp (aref object 1)) ; version is an int
@ -122,7 +121,7 @@ Else return nil."
Properties can be set with
(setf (frameset-prop FRAMESET PROP) NEW-VALUE)"
(setf (frameset-prop FRAMESET PROPERTY) NEW-VALUE)"
(plist-get (frameset-properties frameset) property))
(gv-define-setter frameset-prop (val fs prop)