# HG changeset patch # User John Paul Wallington # Date 1058631681 0 # Node ID e56cb5adb76fb572eac7fe8dc888102374ab2aef # Parent eb2940fc7f4b7f060f1755162e00da1e74041365 (artist-butlast-fn, artist-draw-sline) (artist-draw-rect, artist-draw-square): Doc fixes. diff -r eb2940fc7f4b -r e56cb5adb76f lisp/textmodes/artist.el --- a/lisp/textmodes/artist.el Sat Jul 19 01:27:36 2003 +0000 +++ b/lisp/textmodes/artist.el Sat Jul 19 16:21:21 2003 +0000 @@ -32,7 +32,7 @@ ;; --------------- ;; ;; Artist is an Emacs lisp package that allows you to draw lines, -;; rectangles and ellipses by using your mouse and/or keyboard. The +;; rectangles and ellipses by using your mouse and/or keyboard. The ;; shapes are made up with the ascii characters |, -, / and \. ;; ;; Features are: @@ -61,20 +61,20 @@ ;; erase characters erase rectangles ;; ;; Straight lines are lines that go horizontally, vertically or -;; diagonally. Plain lines go in any direction. The operations in +;; diagonally. Plain lines go in any direction. The operations in ;; the right column are accessed by holding down the shift key while ;; drawing. ;; ;; It is possible to vaporize (erase) entire lines and connected lines ;; (rectangles for example) as long as the lines being vaporized are -;; straight and connected at their endpoints. Vaporizing is inspired +;; straight and connected at their endpoints. Vaporizing is inspired ;; by the drawrect package by Jari Aalto . ;; ;; * Flood-filling: You can fill any area with a certain character by ;; flood-filling. ;; ;; * Cut copy and paste: You can cut, copy and paste rectangular -;; regions. Artist also interfaces with the rect package (this can be +;; regions. Artist also interfaces with the rect package (this can be ;; turned off if it causes you any trouble) so anything you cut in ;; artist can be yanked with C-x r y and vice versa. ;; @@ -85,7 +85,7 @@ ;; poly-line, you can set arrows on the line-ends by typing < or >. ;; ;; * Aspect-ratio: You can set the variable artist-aspect-ratio to -;; reflect the height-width ratio for the font you are using. Squares +;; reflect the height-width ratio for the font you are using. Squares ;; and circles are then drawn square/round. Note, that once your ;; ascii-file is shown with font with a different height-width ratio, ;; the squares won't be square and the circles won't be round. @@ -1685,7 +1685,7 @@ (list 'if fn (cons 'funcall (cons fn args)))) (defvar artist-butlast-fn 'artist-butlast - "The butlast function") + "The butlast function.") (if (fboundp 'butlast) (setq artist-butlast-fn 'butlast) @@ -2526,7 +2526,7 @@ when drawing a simple image. Output is a straight line, which is a list on the form -(END-POINT-1 END-POINT-2 SHAPE-INFO). +\(END-POINT-1 END-POINT-2 SHAPE-INFO). END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. SHAPE-INFO is a vector [START-X START-Y LENGTH-OF-LINE DIRECTION @@ -2581,7 +2581,7 @@ "Draws a rectangle with corners at X1, Y1 and X2, Y2. Output is a rectangle, which is a list on the form -(END-POINT-1 END-POINT-2 SHAPE-INFO). +\(END-POINT-1 END-POINT-2 SHAPE-INFO). END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. SHAPE-INFO is a list of four straight lines." @@ -2642,7 +2642,7 @@ "Draw a square with corners at X1, Y1 and X2, Y2. Output is a square, which is a list on the form -(END-POINT-1 END-POINT-2 SHAPE-INFO). +\(END-POINT-1 END-POINT-2 SHAPE-INFO). END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. SHAPE-INFO is a list of four straight lines."