aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2010-02-11 01:02:43 +0100
committerJuanma Barranquero2010-02-11 01:02:43 +0100
commit0e3742470a6483ab203eb662ba6514834ed08dbf (patch)
tree52dfa9b98b28c7fe1f4947abc869c9a43bd4a81c
parent48c2d18a51689905948fa76b998b03a345ce6002 (diff)
downloademacs-0e3742470a6483ab203eb662ba6514834ed08dbf.tar.gz
emacs-0e3742470a6483ab203eb662ba6514834ed08dbf.zip
* textmodes/artist.el (artist-mt): Fix typos in docstring.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/textmodes/artist.el16
2 files changed, 12 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5278ab8ea31..774c6a775bf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-02-10 Juanma Barranquero <lekktu@gmail.com>
2
3 * textmodes/artist.el (artist-mt): Fix typos in docstring.
4
12010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com> 52010-02-10 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2 6
3 * info.el (Info-bookmark-jump): Simplify. 7 * info.el (Info-bookmark-jump): Simplify.
diff --git a/lisp/textmodes/artist.el b/lisp/textmodes/artist.el
index e1d7b053491..bc5f29482e7 100644
--- a/lisp/textmodes/artist.el
+++ b/lisp/textmodes/artist.el
@@ -859,15 +859,15 @@ ARROW-PRED is a function that is called to find out if the shape
859 can have arrows. The function is called with no arguments and 859 can have arrows. The function is called with no arguments and
860 must return nil or t. 860 must return nil or t.
861ARROW-SET-FN is a function that is called to set arrow end-points. 861ARROW-SET-FN is a function that is called to set arrow end-points.
862 Arguments and return values for this funcion are described below. 862 Arguments and return values for this function are described below.
863INIT-FN is, if non-nil, a function that is called when the first 863INIT-FN is, if non-nil, a function that is called when the first
864 point of the shape is set. Arguments and return values for 864 point of the shape is set. Arguments and return values for
865 this funcion are described below. 865 this function are described below.
866PREP-FILL-FN is, if non-nil, a function that is called after 866PREP-FILL-FN is, if non-nil, a function that is called after
867 the last point is set, but before the filling is done. 867 the last point is set, but before the filling is done.
868 Arguments and return values for this funcion are described below. 868 Arguments and return values for this function are described below.
869EXIT-FN is, if non-nil, a function that is called after filling 869EXIT-FN is, if non-nil, a function that is called after filling
870 is done. Arguments and return values for this funcion are 870 is done. Arguments and return values for this function are
871 described below. 871 described below.
872DRAW-HOW defines the kind of shape. The kinds of shapes are: 872DRAW-HOW defines the kind of shape. The kinds of shapes are:
873 `artist-do-continously' -- Do drawing operation continuously, 873 `artist-do-continously' -- Do drawing operation continuously,
@@ -876,7 +876,7 @@ DRAW-HOW defines the kind of shape. The kinds of shapes are:
876 1 -- Do drawing operation only once. 876 1 -- Do drawing operation only once.
877 2 -- The drawing operation requires two points. 877 2 -- The drawing operation requires two points.
878DRAW-FN is the function to call for drawing. Arguments and 878DRAW-FN is the function to call for drawing. Arguments and
879 return values for this funcion are described below. 879 return values for this function are described below.
880EXTRA-DRAW-INFO the layout of this depends on the value of DRAW-HOW: 880EXTRA-DRAW-INFO the layout of this depends on the value of DRAW-HOW:
881 If DRAW-HOW is `artist-do-continously': 881 If DRAW-HOW is `artist-do-continously':
882 882
@@ -894,20 +894,20 @@ EXTRA-DRAW-INFO the layout of this depends on the value of DRAW-HOW:
894 (UNDRAW-FN FILL-PRED FILL-FN) 894 (UNDRAW-FN FILL-PRED FILL-FN)
895 895
896 UNDRAW-FN is a function to call for undrawing the shape. 896 UNDRAW-FN is a function to call for undrawing the shape.
897 Arguments and return values for this funcion are 897 Arguments and return values for this function are
898 described below. 898 described below.
899 FILL-PRED is a function that is called to find out if the shape 899 FILL-PRED is a function that is called to find out if the shape
900 can have arrows. The function must take no arguments and 900 can have arrows. The function must take no arguments and
901 return nil or t. 901 return nil or t.
902 FILL-FN is a function to call for filling the shape. 902 FILL-FN is a function to call for filling the shape.
903 Arguments and return values for this funcion are 903 Arguments and return values for this function are
904 described below. 904 described below.
905 905
906 If DRAW-HOW is 1: 906 If DRAW-HOW is 1:
907 907
908 () 908 ()
909 909
910Note! All symbols and keywords (both in the `funcion-call' INFO-PART 910Note! All symbols and keywords (both in the `function-call' INFO-PART
911 as well as in the `graphics-operation' INFO-PART) must be unique. 911 as well as in the `graphics-operation' INFO-PART) must be unique.
912 912
913The following table describe function arguments and return value 913The following table describe function arguments and return value