]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc typo fixes
authorGlenn Morris <rgm@gnu.org>
Fri, 5 Oct 2012 06:50:23 +0000 (23:50 -0700)
committerGlenn Morris <rgm@gnu.org>
Fri, 5 Oct 2012 06:50:23 +0000 (23:50 -0700)
doc/misc/calc.texi
doc/misc/cl.texi
lisp/files.el

index 48252ceb3271b05c68f0f14a2a7eadba3e4b172c..91c42161bb718229ad44c3cb8521cdd1e3dcbad5 100644 (file)
@@ -35252,7 +35252,7 @@ character of the prefix can simply be typed twice.
 
 Calc is controlled by many variables, most of which can be reset
 from within Calc.  Some variables are less involved with actual
-calculation and can be set outside of Calc using Emacs'ss
+calculation and can be set outside of Calc using Emacs's
 customization facilities.  These variables are listed below.
 Typing @kbd{M-x customize-variable RET @var{variable-name} RET}
 will bring up a buffer in which the variable's value can be redefined.
index d35c14acd1deaf79e0b3dde7a31ae0a65a9f49cd..a5ee240edc40a98c9e04ea77cb1d889992d3e201 100644 (file)
@@ -2094,7 +2094,7 @@ of a list.  @var{list} should evaluate to a list; the body @var{forms}
 are executed with @var{var} bound to each element of the list in
 turn.  Finally, the @var{result} form (or @code{nil}) is evaluated
 with @var{var} bound to @code{nil} to produce the result returned by
-the loop.  Unlike with Emacs'ss built in @code{dolist}, the loop is
+the loop.  Unlike with Emacs's built in @code{dolist}, the loop is
 surrounded by an implicit @code{nil} block.
 @end defspec
 
@@ -2104,7 +2104,7 @@ of times.  The body is executed with @var{var} bound to the integers
 from zero (inclusive) to @var{count} (exclusive), in turn.  Then
 the @code{result} form is evaluated with @var{var} bound to the total
 number of iterations that were done (i.e., @code{(max 0 @var{count})})
-to get the return value for the loop form.  Unlike with Emacs'ss built in
+to get the return value for the loop form.  Unlike with Emacs's built in
 @code{dolist}, the loop is surrounded by an implicit @code{nil} block.
 @end defspec
 
index 5f83639d9cf6aee26a7b3f0ce5bbf72d85212ba7..5bb507d2397cca84347be51202ec3bcd7ef36596 100644 (file)
@@ -22,7 +22,7 @@
 
 ;;; Commentary:
 
-;; Defines most of Emacs'ss file- and directory-handling functions,
+;; Defines most of Emacs's file- and directory-handling functions,
 ;; including basic file visiting, backup generation, link handling,
 ;; ITS-id version control, load- and write-hook handling, and the like.