1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

* textmodes/flyspell.el (nxml-mode): Add the right.

`flyspell-mode-predicate'.

* wid-edit.el (link): Use 'mouse-face for :follow-link.
This commit is contained in:
Bastien Guerry 2008-03-14 10:13:30 +00:00
parent b7b8d8ed71
commit 23e330700e
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-03-14 Bastien Guerry <bzg@altern.org>
* textmodes/flyspell.el (nxml-mode): Add the right.
`flyspell-mode-predicate'.
* wid-edit.el (link): Use 'mouse-face for :follow-link.
2008-03-14 Glenn Morris <rgm@gnu.org>
* calendar/solar.el: Reorder so that functions are defined before use.

View File

@ -349,6 +349,7 @@ property of the major mode name.")
;;*--- sgml mode -------------------------------------------------------*/
(put 'sgml-mode 'flyspell-mode-predicate 'sgml-mode-flyspell-verify)
(put 'html-mode 'flyspell-mode-predicate 'sgml-mode-flyspell-verify)
(put 'nxml-mode 'flyspell-mode-predicate 'sgml-mode-flyspell-verify)
(defun sgml-mode-flyspell-verify ()
"Function used for `flyspell-generic-check-word-predicate' in SGML mode."

View File

@ -1773,7 +1773,7 @@ If END is omitted, it defaults to the length of LIST."
"An embedded link."
:button-prefix 'widget-link-prefix
:button-suffix 'widget-link-suffix
:follow-link "\C-m"
:follow-link 'mouse-face
:help-echo "Follow the link."
:format "%[%t%]")