aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-01-14 09:35:32 +0000
committerKim F. Storm2005-01-14 09:35:32 +0000
commit1b1c49e1b3d20b1f4222cdd22371cc1b235fa7d8 (patch)
tree5f6c08880bdf67d0de6a6fe5ca274dfc7f57d7cd
parent6ac8a822ecbcf7757da066e17ed6a157f4ebc109 (diff)
downloademacs-1b1c49e1b3d20b1f4222cdd22371cc1b235fa7d8.tar.gz
emacs-1b1c49e1b3d20b1f4222cdd22371cc1b235fa7d8.zip
(Links and Mouse-1): Fix string and vector item.
-rw-r--r--lispref/text.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/text.texi b/lispref/text.texi
index 970b8f0eec1..338be03baf1 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -3461,11 +3461,11 @@ link.
3461The action code tells @key{Mouse-1} how to follow the link: 3461The action code tells @key{Mouse-1} how to follow the link:
3462 3462
3463@table @asis 3463@table @asis
3464@item a string 3464@item a string or vector
3465If the action code is a string or vector, the @key{Mouse-1} event is 3465If the action code is a string or vector, the @key{Mouse-1} event is
3466translated into the first element of the string or vector; i.e., the 3466translated into the first element of the string or vector; i.e., the
3467action of the @key{Mouse-1} click is the local or global binding of 3467action of the @key{Mouse-1} click is the local or global binding of
3468that character. Thus, if the action code is @code{"foo"}, 3468that character or symbol. Thus, if the action code is @code{"foo"},
3469@key{Mouse-1} translates into @kbd{f}. If it is @code{[foo]}, 3469@key{Mouse-1} translates into @kbd{f}. If it is @code{[foo]},
3470@key{Mouse-1} translates into @key{foo}. 3470@key{Mouse-1} translates into @key{foo}.
3471 3471