]> git.eshelyaron.com Git - emacs.git/commitdiff
"Advice" is a mass noun. Amend text accordingly.
authorAlan Mackenzie <acm@muc.de>
Mon, 15 Dec 2014 12:04:52 +0000 (12:04 +0000)
committerAlan Mackenzie <acm@muc.de>
Mon, 15 Dec 2014 12:04:52 +0000 (12:04 +0000)
cl.texi (Obsolete Macros): Replace "an advice" with "advice".

doc/misc/ChangeLog
doc/misc/cl.texi

index 83cdbc63529ab5cc07fc50583fd3148e2ac46fbd..297bfd2bc884d4ca92b63accac865b7269004251 100644 (file)
@@ -1,3 +1,8 @@
+2014-12-15  Alan Mackenzie  <acm@muc.de>
+
+       "Advice" is a mass noun.  Amend text accordingly.
+       * cl.texi (Obsolete Macros): Replace "an advice" with "advice".
+
 2014-12-12  Paul Eggert  <eggert@cs.ucla.edu>
 
        * texinfo.tex: Update from gnulib.
index c15918afc4e2ad7d3f43adff97b5f047460be25a..21188af8bb71fd82fc6720fd2b04bcd887b8673d 100644 (file)
@@ -4914,7 +4914,7 @@ through the Lisp @code{message} function.
 For those cases where the dynamic scoping of @code{flet} is desired,
 @code{cl-flet} is clearly not a substitute.  The most direct replacement would
 be instead to use @code{cl-letf} to temporarily rebind @code{(symbol-function
-'@var{fun})}.  But in most cases, a better substitute is to use an advice, such
+'@var{fun})}.  But in most cases, a better substitute is to use advice, such
 as:
 
 @example
@@ -4930,7 +4930,7 @@ binding of @code{my-fun-advice-enable}.
 
 @c Bug#411.
 Note that many primitives (e.g., @code{+}) have special byte-compile handling.
-Attempts to redefine such functions using @code{flet}, @code{cl-letf}, or an
+Attempts to redefine such functions using @code{flet}, @code{cl-letf}, or
 advice will fail when byte-compiled.
 @c Or cl-flet.
 @c In such cases, use @code{labels} instead.