From 3c943fb97306a2ed67ce35fe3f2226457ed97235 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Sat, 29 Oct 2005 07:10:16 +0000 Subject: [PATCH] Emacs 21 flyspell fix. * lisp/muse-mode.el (muse-mode): I finally figured out how to get flyspell to pay attention to my muse-mode-flyspell-p constraints, which means that the version of flyspell that comes with Emacs21 will no longer mess up links. git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-256 --- ChangeLog | 16 ++++++++++++++++ lisp/muse-mode.el | 2 ++ 2 files changed, 18 insertions(+) diff --git a/ChangeLog b/ChangeLog index 55c2989..8162968 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,22 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0 # +2005-10-29 07:10:16 GMT Michael Olson patch-256 + + Summary: + Emacs 21 flyspell fix. + Revision: + muse--main--1.0--patch-256 + + * lisp/muse-mode.el (muse-mode): I finally figured out how to get + flyspell to pay attention to my muse-mode-flyspell-p constraints, which + means that the version of flyspell that comes with Emacs21 will no + longer mess up links. + + modified files: + ChangeLog lisp/muse-mode.el + + 2005-10-29 03:22:40 GMT Michael Olson patch-255 Summary: diff --git a/lisp/muse-mode.el b/lisp/muse-mode.el index f96cff0..ddae305 100644 --- a/lisp/muse-mode.el +++ b/lisp/muse-mode.el @@ -175,6 +175,8 @@ so only enable this if you don't use either of these." (set (make-local-variable 'paragraph-start) (concat paragraph-start "\\|\\s-+\\(-\\|[0-9]+\\.\\)\\s-+" "\\|\\[[0-9]+\\]\\s-*")) + ;; If we're using Emacs21, this makes flyspell work like it should + (setq flyspell-generic-check-word-p 'muse-mode-flyspell-p) ;; Comment syntax is `; comment' (set (make-local-variable 'comment-start) "; ") -- 2.11.4.GIT