emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r108888: * doc/lispref/intro.texi: Im


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108888: * doc/lispref/intro.texi: Improve/undo previous changes.
Date: Thu, 05 Jul 2012 21:47:46 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108888
author: Richard Stallman <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2012-07-05 21:47:46 -0400
message:
  * doc/lispref/intro.texi: Improve/undo previous changes.
modified:
  doc/lispref/intro.texi
=== modified file 'doc/lispref/intro.texi'
--- a/doc/lispref/intro.texi    2012-07-05 03:06:50 +0000
+++ b/doc/lispref/intro.texi    2012-07-06 01:47:46 +0000
@@ -235,7 +235,7 @@
      @result{} c
 @end example
 
-  Sometimes to help describe one form, we show another form that
+  To help describe one form, we sometimes show another form that
 produces identical results.  The exact equivalence of two forms is
 indicated with @address@hidden
 
@@ -350,7 +350,7 @@
 you call the function.
 
   The keyword @code{&rest} (which must be followed by a single
-argument name) indicates that any number of arguments may follow.  The
+argument name) indicates that any number of arguments can follow.  The
 single argument name following @code{&rest} receives, as its
 value, a list of all the remaining arguments passed to the function.
 Do not write @code{&rest} when you call the function.
@@ -380,10 +380,9 @@
 @end defun
 
   Any argument whose name contains the name of a type (e.g.,
address@hidden, @var{integer1} or @var{buffer}) is expected to be bound
-to an object of that type.  A plural of a type (such as @var{buffers})
-often means a list of objects of that type.  An argument named with the
-type @var{object} may be bound to an object of any type.
address@hidden, @var{integer1} or @var{buffer}) is expected to be of that
+type.  A plural of a type (such as @var{buffers}) often means a list of
+objects of that type.  An argument named @var{object} may be of any type.
 (For a list of Emacs object types, @pxref{Lisp Data Types}.)  An argument
 with some other sort of name (e.g., @var{new-file}) is discussed
 specifically in the description of the function.  In some sections,


reply via email to

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