aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-05-12 13:11:47 +0000
committerEli Zaretskii2006-05-12 13:11:47 +0000
commit3b7694ef71f98476d76e40f8ac8501fcd2896f3f (patch)
tree1a7b3c76d34419dcf27470a4ae8352569705d47c
parent61515a635d061930363e0429bf654e0d7c16fd44 (diff)
downloademacs-3b7694ef71f98476d76e40f8ac8501fcd2896f3f.tar.gz
emacs-3b7694ef71f98476d76e40f8ac8501fcd2896f3f.zip
Fix spelling errors.
-rw-r--r--lispintro/emacs-lisp-intro.texi18
1 files changed, 9 insertions, 9 deletions
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi
index b5719a4d214..c7fef17061f 100644
--- a/lispintro/emacs-lisp-intro.texi
+++ b/lispintro/emacs-lisp-intro.texi
@@ -17100,7 +17100,7 @@ Set the shape and color of the mouse cursor:
17100@item 17100@item
17101Convert @kbd{@key{CTL}-h} into @key{DEL} and @key{DEL} 17101Convert @kbd{@key{CTL}-h} into @key{DEL} and @key{DEL}
17102into @kbd{@key{CTL}-h}.@* 17102into @kbd{@key{CTL}-h}.@*
17103(Some olders keyboards needed this, although I have not seen the 17103(Some older keyboards needed this, although I have not seen the
17104problem recently.) 17104problem recently.)
17105 17105
17106@smallexample 17106@smallexample
@@ -19489,7 +19489,7 @@ in this case would end up as 15.)
19489@cindex Print horizontal axis 19489@cindex Print horizontal axis
19490@cindex Horizontal axis printing 19490@cindex Horizontal axis printing
19491 19491
19492X axis labels are much like Y axis labels, except that the tics are on a 19492X axis labels are much like Y axis labels, except that the ticks are on a
19493line above the numbers. Labels should look like this: 19493line above the numbers. Labels should look like this:
19494 19494
19495@smallexample 19495@smallexample
@@ -19501,7 +19501,7 @@ line above the numbers. Labels should look like this:
19501 19501
19502The first tic is under the first column of the graph and is preceded by 19502The first tic is under the first column of the graph and is preceded by
19503several blank spaces. These spaces provide room in rows above for the Y 19503several blank spaces. These spaces provide room in rows above for the Y
19504axis labels. The second, third, fourth, and subsequent tics are all 19504axis labels. The second, third, fourth, and subsequent ticks are all
19505spaced equally, according to the value of @code{X-axis-label-spacing}. 19505spaced equally, according to the value of @code{X-axis-label-spacing}.
19506 19506
19507The second row of the X axis consists of numbers, preceded by several 19507The second row of the X axis consists of numbers, preceded by several
@@ -19629,7 +19629,7 @@ looks like this:
19629@end smallexample 19629@end smallexample
19630 19630
19631We also need to determine the length of the horizontal axis, which is 19631We also need to determine the length of the horizontal axis, which is
19632the length of the numbers list, and the number of tics in the horizontal 19632the length of the numbers list, and the number of ticks in the horizontal
19633axis: 19633axis:
19634 19634
19635@smallexample 19635@smallexample
@@ -19646,7 +19646,7 @@ axis:
19646@end group 19646@end group
19647 19647
19648@group 19648@group
19649;; number-of-X-tics 19649;; number-of-X-ticks
19650(if (zerop (% (X-length tic-width))) 19650(if (zerop (% (X-length tic-width)))
19651 (/ (X-length tic-width)) 19651 (/ (X-length tic-width))
19652 (1+ (/ (X-length tic-width)))) 19652 (1+ (/ (X-length tic-width))))
@@ -19661,7 +19661,7 @@ All this leads us directly to the function for printing the X axis tic line:
19661@group 19661@group
19662(defun print-X-axis-tic-line 19662(defun print-X-axis-tic-line
19663 (number-of-X-tics X-axis-leading-spaces X-axis-tic-element) 19663 (number-of-X-tics X-axis-leading-spaces X-axis-tic-element)
19664 "Print tics for X axis." 19664 "Print ticks for X axis."
19665 (insert X-axis-leading-spaces) 19665 (insert X-axis-leading-spaces)
19666 (insert X-axis-tic-symbol) ; @r{Under first column.} 19666 (insert X-axis-tic-symbol) ; @r{Under first column.}
19667@end group 19667@end group
@@ -19676,7 +19676,7 @@ All this leads us directly to the function for printing the X axis tic line:
19676 X-axis-tic-symbol)) 19676 X-axis-tic-symbol))
19677@end group 19677@end group
19678@group 19678@group
19679 ;; @r{Insert remaining tics.} 19679 ;; @r{Insert remaining ticks.}
19680 (while (> number-of-X-tics 1) 19680 (while (> number-of-X-tics 1)
19681 (insert X-axis-tic-element) 19681 (insert X-axis-tic-element)
19682 (setq number-of-X-tics (1- number-of-X-tics)))) 19682 (setq number-of-X-tics (1- number-of-X-tics))))
@@ -20905,7 +20905,7 @@ Optionally, print according to VERTICAL-STEP."
20905@group 20905@group
20906(defun print-X-axis-tic-line 20906(defun print-X-axis-tic-line
20907 (number-of-X-tics X-axis-leading-spaces X-axis-tic-element) 20907 (number-of-X-tics X-axis-leading-spaces X-axis-tic-element)
20908 "Print tics for X axis." 20908 "Print ticks for X axis."
20909 (insert X-axis-leading-spaces) 20909 (insert X-axis-leading-spaces)
20910 (insert X-axis-tic-symbol) ; @r{Under first column.} 20910 (insert X-axis-tic-symbol) ; @r{Under first column.}
20911@end group 20911@end group
@@ -20920,7 +20920,7 @@ Optionally, print according to VERTICAL-STEP."
20920 X-axis-tic-symbol)) 20920 X-axis-tic-symbol))
20921@end group 20921@end group
20922@group 20922@group
20923 ;; @r{Insert remaining tics.} 20923 ;; @r{Insert remaining ticks.}
20924 (while (> number-of-X-tics 1) 20924 (while (> number-of-X-tics 1)
20925 (insert X-axis-tic-element) 20925 (insert X-axis-tic-element)
20926 (setq number-of-X-tics (1- number-of-X-tics)))) 20926 (setq number-of-X-tics (1- number-of-X-tics))))