diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-03-17 17:57:38 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-03-17 17:57:38 +0000 |
commit | 11c5be91d7c3d55ab137ad0977bd38dcdf537250 (patch) | |
tree | 12ea805290352435a78dcd35c471fb6c6a945c1a /lisp/woman.el | |
parent | d08592e8bc105da29701c5eb8715580a558d698d (diff) | |
download | emacs-11c5be91d7c3d55ab137ad0977bd38dcdf537250.tar.gz |
(woman-change-fonts): Tweak previous change by using
woman-request-regexp rather than "^\\.".
Diffstat (limited to 'lisp/woman.el')
-rw-r--r-- | lisp/woman.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/woman.el b/lisp/woman.el index 9c73a365b61..ffa0ea692ad 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -3327,7 +3327,7 @@ If optional arg CONCAT is non-nil then join arguments." ;; otherwise match woman-request-regexp. The "\\&" which is ;; inserted to prevent this is removed by woman2-process-escapes. (and fescape - (looking-at "^\\.") + (looking-at woman-request-regexp) (insert "\\&")) (woman-set-face previous-pos (point) current-font) (if beg |