emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115707: Document `special-form-p' and `macrop'.


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r115707: Document `special-form-p' and `macrop'.
Date: Mon, 23 Dec 2013 11:27:37 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115707
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Mon 2013-12-23 19:27:29 +0800
message:
  Document `special-form-p' and `macrop'.
  
  * doc/lispref/eval.texi (Special Forms): Document `special-form-p'.
  
  * doc/lispref/macros.texi (Simple Macro): Document `macrop'.
modified:
  doc/lispref/ChangeLog          changelog-20091113204419-o5vbwnq5f7feedwu-6155
  doc/lispref/eval.texi          eval.texi-20091113204419-o5vbwnq5f7feedwu-6178
  doc/lispref/macros.texi        
macros.texi-20091113204419-o5vbwnq5f7feedwu-6195
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2013-12-23 08:50:31 +0000
+++ b/doc/lispref/ChangeLog     2013-12-23 11:27:29 +0000
@@ -1,5 +1,9 @@
 2013-12-23  Xue Fuqiao  <address@hidden>
 
+       * eval.texi (Special Forms): Document `special-form-p'.
+
+       * macros.texi (Simple Macro): Document `macrop'.
+
        * files.texi (Changing Files): Fix an argument of `copy-file'.
 
        * strings.texi (Creating Strings): Document TRIM in `split-string'.

=== modified file 'doc/lispref/eval.texi'
--- a/doc/lispref/eval.texi     2013-10-23 17:20:09 +0000
+++ b/doc/lispref/eval.texi     2013-12-23 11:27:29 +0000
@@ -440,6 +440,11 @@
 expression, so Emacs may signal an error, or may return 3 or 4 or
 @code{nil}, or may behave in other ways.
 
address@hidden special-form-p object
+This predicate tests whether its argument is a special form, and
+returns @code{t} if so, @code{nil} otherwise.
address@hidden defun
+
   Here is a list, in alphabetical order, of all of the special forms in
 Emacs Lisp with a reference to where each is described.
 

=== modified file 'doc/lispref/macros.texi'
--- a/doc/lispref/macros.texi   2013-09-08 18:01:25 +0000
+++ b/doc/lispref/macros.texi   2013-12-23 11:27:29 +0000
@@ -55,6 +55,11 @@
 returns this expansion, Lisp proceeds to evaluate it, thus incrementing
 @code{x}.
 
address@hidden macrop object
+This predicate tests whether its argument is a macro, and returns
address@hidden if so, @code{nil} otherwise.
address@hidden defun
+
 @node Expansion
 @section Expansion of a Macro Call
 @cindex expansion of macros

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-12-23 08:50:31 +0000
+++ b/etc/NEWS  2013-12-23 11:27:29 +0000
@@ -1012,11 +1012,11 @@
 PRESERVE-EXTENDED-ATTRIBUTES as it now handles both SELinux context
 and ACL entries.
 
++++
 *** The function `file-ownership-preserved-p' now has an optional
 argument GROUP which causes it check for file group too.  This can be
 used in place of the 9th element of `file-attributes'.
 
-
 *** The function `set-visited-file-modtime' now accepts a 0 or -1
 argument, with the same interpretation as the returned value of
 `visited-file-modtime'.
@@ -1042,6 +1042,7 @@
 set (defface, custom, or user spec), and it directly sets the relevant
 property using the supplied face spec.
 
++++
 *** New function `add-face-text-property', which can be used to
 conveniently prepend/append new face properties.
 
@@ -1051,6 +1052,7 @@
 *** New face characteristic (supports :underline (:style wave))
 specifies whether or not the terminal can display a wavy line.
 
++++
 *** New face spec attribute :distant-foreground
 specifies foreground to use if background color is near the foreground
 color that would otherwise have been used.
@@ -1125,6 +1127,7 @@
 
 ** `time-to-seconds' is not obsolete any more.
 
++++
 ** New functions `special-form-p' and `macrop'.
 
 ** Docstrings can be made dynamic by adding a `dynamic-docstring-function'


reply via email to

[Prev in Thread] Current Thread [Next in Thread]