diff options
| author | Kim F. Storm | 2005-01-14 09:35:32 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-01-14 09:35:32 +0000 |
| commit | 1b1c49e1b3d20b1f4222cdd22371cc1b235fa7d8 (patch) | |
| tree | 5f6c08880bdf67d0de6a6fe5ca274dfc7f57d7cd | |
| parent | 6ac8a822ecbcf7757da066e17ed6a157f4ebc109 (diff) | |
| download | emacs-1b1c49e1b3d20b1f4222cdd22371cc1b235fa7d8.tar.gz emacs-1b1c49e1b3d20b1f4222cdd22371cc1b235fa7d8.zip | |
(Links and Mouse-1): Fix string and vector item.
| -rw-r--r-- | lispref/text.texi | 4 |
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. | |||
| 3461 | The action code tells @key{Mouse-1} how to follow the link: | 3461 | The 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 |
| 3465 | If the action code is a string or vector, the @key{Mouse-1} event is | 3465 | If the action code is a string or vector, the @key{Mouse-1} event is |
| 3466 | translated into the first element of the string or vector; i.e., the | 3466 | translated into the first element of the string or vector; i.e., the |
| 3467 | action of the @key{Mouse-1} click is the local or global binding of | 3467 | action of the @key{Mouse-1} click is the local or global binding of |
| 3468 | that character. Thus, if the action code is @code{"foo"}, | 3468 | that 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 | ||