diff options
| author | Stefan Kangas | 2022-06-16 09:48:05 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-06-16 23:25:53 +0200 |
| commit | f419de6eca4ca6a6d03db1eec4b9086a3d1e5b86 (patch) | |
| tree | 68fbccef870530a5e20004b8415a34c621fa05cd | |
| parent | 5ddd0f1a3573ce3155b06850398dbc656539c669 (diff) | |
| download | emacs-f419de6eca4ca6a6d03db1eec4b9086a3d1e5b86.tar.gz emacs-f419de6eca4ca6a6d03db1eec4b9086a3d1e5b86.zip | |
* lisp/textmodes/artist.el: Minor doc fixes.
| -rw-r--r-- | lisp/textmodes/artist.el | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/lisp/textmodes/artist.el b/lisp/textmodes/artist.el index 18e03b49049..e6fddd216d7 100644 --- a/lisp/textmodes/artist.el +++ b/lisp/textmodes/artist.el | |||
| @@ -46,8 +46,8 @@ | |||
| 46 | ;; | 46 | ;; |
| 47 | ;; * Rubber-banding: When drawing lines you can interactively see the | 47 | ;; * Rubber-banding: When drawing lines you can interactively see the |
| 48 | ;; result while holding the mouse button down and moving the mouse. If | 48 | ;; result while holding the mouse button down and moving the mouse. If |
| 49 | ;; your machine is not fast enough (a 386 is a bit to slow, but a | 49 | ;; your machine is not fast enough (a 386 is a bit too slow, but a |
| 50 | ;; pentium is well enough), you can turn this feature off. You will | 50 | ;; Pentium is good enough), you can turn this feature off. You will |
| 51 | ;; then see 1's and 2's which mark the 1st and 2nd endpoint of the line | 51 | ;; then see 1's and 2's which mark the 1st and 2nd endpoint of the line |
| 52 | ;; you are drawing. | 52 | ;; you are drawing. |
| 53 | ;; | 53 | ;; |
| @@ -75,10 +75,10 @@ | |||
| 75 | ;; * Flood-filling: You can fill any area with a certain character by | 75 | ;; * Flood-filling: You can fill any area with a certain character by |
| 76 | ;; flood-filling. | 76 | ;; flood-filling. |
| 77 | ;; | 77 | ;; |
| 78 | ;; * Cut copy and paste: You can cut, copy and paste rectangular | 78 | ;; * Cut, copy and paste: You can cut, copy and paste rectangular |
| 79 | ;; regions. Artist also interfaces with the rect package (this can be | 79 | ;; regions. Artist also interfaces with the rect package (this can be |
| 80 | ;; turned off if it causes you any trouble) so anything you cut in | 80 | ;; turned off if it causes you any trouble) so anything you cut in |
| 81 | ;; artist can be yanked with C-x r y and vice versa. | 81 | ;; artist can be yanked with `C-x r y' and vice versa. |
| 82 | ;; | 82 | ;; |
| 83 | ;; * Drawing with keys: Everything you can do with the mouse, you can | 83 | ;; * Drawing with keys: Everything you can do with the mouse, you can |
| 84 | ;; also do without the mouse. | 84 | ;; also do without the mouse. |
| @@ -86,7 +86,7 @@ | |||
| 86 | ;; * Arrows: After having drawn a (straight) line or a (straight) | 86 | ;; * Arrows: After having drawn a (straight) line or a (straight) |
| 87 | ;; poly-line, you can set arrows on the line-ends by typing < or >. | 87 | ;; poly-line, you can set arrows on the line-ends by typing < or >. |
| 88 | ;; | 88 | ;; |
| 89 | ;; * Aspect-ratio: You can set the variable artist-aspect-ratio to | 89 | ;; * Aspect-ratio: You can set the user option `artist-aspect-ratio' to |
| 90 | ;; reflect the height-width ratio for the font you are using. Squares | 90 | ;; reflect the height-width ratio for the font you are using. Squares |
| 91 | ;; and circles are then drawn square/round. Note, that once your | 91 | ;; and circles are then drawn square/round. Note, that once your |
| 92 | ;; ascii-file is shown with font with a different height-width ratio, | 92 | ;; ascii-file is shown with font with a different height-width ratio, |
| @@ -95,7 +95,7 @@ | |||
| 95 | ;; * Picture mode compatibility: Artist is picture mode compatible (this | 95 | ;; * Picture mode compatibility: Artist is picture mode compatible (this |
| 96 | ;; can be turned off). | 96 | ;; can be turned off). |
| 97 | ;; | 97 | ;; |
| 98 | ;; See the documentation for the function artist-mode for a detailed | 98 | ;; See the documentation for the function `artist-mode' for a detailed |
| 99 | ;; description on how to use artist. | 99 | ;; description on how to use artist. |
| 100 | ;; | 100 | ;; |
| 101 | ;; | 101 | ;; |
| @@ -119,8 +119,8 @@ | |||
| 119 | ;;; Known bugs: | 119 | ;;; Known bugs: |
| 120 | 120 | ||
| 121 | ;; It is not possible to change between shifted and unshifted operation | 121 | ;; It is not possible to change between shifted and unshifted operation |
| 122 | ;; while drawing with the mouse. (See the comment in the function | 122 | ;; while drawing with the mouse. (See the comment in the function |
| 123 | ;; artist-shift-has-changed for further details.) | 123 | ;; `artist-shift-has-changed' for further details.) |
| 124 | 124 | ||
| 125 | 125 | ||
| 126 | ;;; ChangeLog: | 126 | ;;; ChangeLog: |
| @@ -149,9 +149,9 @@ | |||
| 149 | ;; | 149 | ;; |
| 150 | ;; 1.2.1 15-Nov-2000 | 150 | ;; 1.2.1 15-Nov-2000 |
| 151 | ;; New: Documentation fixes. | 151 | ;; New: Documentation fixes. |
| 152 | ;; Bugfix: Sets next-line-add-newlines to t while in artist-mode. | 152 | ;; Bugfix: Set `next-line-add-newlines' to t while in `artist-mode'. |
| 153 | ;; Drawing with keys was confusing without this fix, if | 153 | ;; Drawing with keys was confusing without this fix, if |
| 154 | ;; next-line-add-newlines was set to nil. | 154 | ;; `next-line-add-newlines' was set to nil. |
| 155 | ;; Thanks to Tatsuo Furukawa <tatsuo@kobe.hp.com> for this. | 155 | ;; Thanks to Tatsuo Furukawa <tatsuo@kobe.hp.com> for this. |
| 156 | ;; | 156 | ;; |
| 157 | ;; 1.2 22-Oct-2000 | 157 | ;; 1.2 22-Oct-2000 |
| @@ -462,7 +462,7 @@ This variable is initialized by the `artist-make-prev-next-op-alist' function.") | |||
| 462 | (if artist-picture-compatibility | 462 | (if artist-picture-compatibility |
| 463 | (require 'picture)) | 463 | (require 'picture)) |
| 464 | 464 | ||
| 465 | ;; Variables that are made local in artist-mode-init | 465 | ;; Variables that are made local in `artist-mode-init' |
| 466 | (defvar artist-key-is-drawing nil) | 466 | (defvar artist-key-is-drawing nil) |
| 467 | (defvar artist-key-endpoint1 nil) | 467 | (defvar artist-key-endpoint1 nil) |
| 468 | (defvar artist-key-poly-point-list nil) | 468 | (defvar artist-key-poly-point-list nil) |
| @@ -1334,25 +1334,25 @@ Variables | |||
| 1334 | This is a brief overview of the different variables. For more info, | 1334 | This is a brief overview of the different variables. For more info, |
| 1335 | see the documentation for the variables (type \\[describe-variable] <variable> RET). | 1335 | see the documentation for the variables (type \\[describe-variable] <variable> RET). |
| 1336 | 1336 | ||
| 1337 | artist-rubber-banding Interactively do rubber-banding or not | 1337 | `artist-rubber-banding' Interactively do rubber-banding or not |
| 1338 | artist-first-char What to set at first/second point... | 1338 | `artist-first-char' What to set at first/second point... |
| 1339 | artist-second-char ...when not rubber-banding | 1339 | `artist-second-char' ...when not rubber-banding |
| 1340 | artist-interface-with-rect If cut/copy/paste should interface with rect | 1340 | `artist-interface-with-rect' Should cut/copy/paste interface with rect |
| 1341 | artist-arrows The arrows to use when drawing arrows | 1341 | `artist-arrows' The arrows to use when drawing arrows |
| 1342 | artist-aspect-ratio Character height-to-width for squares | 1342 | `artist-aspect-ratio' Character height-to-width for squares |
| 1343 | artist-trim-line-endings Trimming of line endings | 1343 | `artist-trim-line-endings' Trimming of line endings |
| 1344 | artist-flood-fill-right-border Right border when flood-filling | 1344 | `artist-flood-fill-right-border' Right border when flood-filling |
| 1345 | artist-flood-fill-show-incrementally Update display while filling | 1345 | `artist-flood-fill-show-incrementally' Update display while filling |
| 1346 | artist-pointer-shape Pointer shape to use while drawing | 1346 | `artist-pointer-shape' Pointer shape to use while drawing |
| 1347 | artist-ellipse-left-char Character to use for narrow ellipses | 1347 | `artist-ellipse-left-char' Character to use for narrow ellipses |
| 1348 | artist-ellipse-right-char Character to use for narrow ellipses | 1348 | `artist-ellipse-right-char' Character to use for narrow ellipses |
| 1349 | artist-borderless-shapes If shapes should have borders | 1349 | `artist-borderless-shapes' If shapes should have borders |
| 1350 | artist-picture-compatibility Whether or not to be picture mode compatible | 1350 | `artist-picture-compatibility' Picture mode compatibility on or off |
| 1351 | artist-vaporize-fuzziness Tolerance when recognizing lines | 1351 | `artist-vaporize-fuzziness' Tolerance when recognizing lines |
| 1352 | artist-spray-interval Seconds between repeated sprayings | 1352 | `artist-spray-interval' Seconds between repeated sprayings |
| 1353 | artist-spray-radius Size of the spray-area | 1353 | `artist-spray-radius' Size of the spray-area |
| 1354 | artist-spray-chars The spray-\"color\" | 1354 | `artist-spray-chars' The spray-\"color\" |
| 1355 | artist-spray-new-chars Initial spray-\"color\" | 1355 | `artist-spray-new-char' Initial spray-\"color\" |
| 1356 | 1356 | ||
| 1357 | Hooks | 1357 | Hooks |
| 1358 | 1358 | ||