Mercurial > emacs
changeset 70609:bd74271e8d03
Fix spelling errors.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 12 May 2006 13:11:47 +0000 |
parents | 7f610cc127ee |
children | d4b2c31464f8 |
files | lispintro/emacs-lisp-intro.texi |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/lispintro/emacs-lisp-intro.texi Fri May 12 12:38:33 2006 +0000 +++ b/lispintro/emacs-lisp-intro.texi Fri May 12 13:11:47 2006 +0000 @@ -17100,7 +17100,7 @@ @item Convert @kbd{@key{CTL}-h} into @key{DEL} and @key{DEL} into @kbd{@key{CTL}-h}.@* -(Some olders keyboards needed this, although I have not seen the +(Some older keyboards needed this, although I have not seen the problem recently.) @smallexample @@ -19489,7 +19489,7 @@ @cindex Print horizontal axis @cindex Horizontal axis printing -X axis labels are much like Y axis labels, except that the tics are on a +X axis labels are much like Y axis labels, except that the ticks are on a line above the numbers. Labels should look like this: @smallexample @@ -19501,7 +19501,7 @@ The first tic is under the first column of the graph and is preceded by several blank spaces. These spaces provide room in rows above for the Y -axis labels. The second, third, fourth, and subsequent tics are all +axis labels. The second, third, fourth, and subsequent ticks are all spaced equally, according to the value of @code{X-axis-label-spacing}. The second row of the X axis consists of numbers, preceded by several @@ -19629,7 +19629,7 @@ @end smallexample We also need to determine the length of the horizontal axis, which is -the length of the numbers list, and the number of tics in the horizontal +the length of the numbers list, and the number of ticks in the horizontal axis: @smallexample @@ -19646,7 +19646,7 @@ @end group @group -;; number-of-X-tics +;; number-of-X-ticks (if (zerop (% (X-length tic-width))) (/ (X-length tic-width)) (1+ (/ (X-length tic-width)))) @@ -19661,7 +19661,7 @@ @group (defun print-X-axis-tic-line (number-of-X-tics X-axis-leading-spaces X-axis-tic-element) - "Print tics for X axis." + "Print ticks for X axis." (insert X-axis-leading-spaces) (insert X-axis-tic-symbol) ; @r{Under first column.} @end group @@ -19676,7 +19676,7 @@ X-axis-tic-symbol)) @end group @group - ;; @r{Insert remaining tics.} + ;; @r{Insert remaining ticks.} (while (> number-of-X-tics 1) (insert X-axis-tic-element) (setq number-of-X-tics (1- number-of-X-tics)))) @@ -20905,7 +20905,7 @@ @group (defun print-X-axis-tic-line (number-of-X-tics X-axis-leading-spaces X-axis-tic-element) - "Print tics for X axis." + "Print ticks for X axis." (insert X-axis-leading-spaces) (insert X-axis-tic-symbol) ; @r{Under first column.} @end group @@ -20920,7 +20920,7 @@ X-axis-tic-symbol)) @end group @group - ;; @r{Insert remaining tics.} + ;; @r{Insert remaining ticks.} (while (> number-of-X-tics 1) (insert X-axis-tic-element) (setq number-of-X-tics (1- number-of-X-tics))))