John S J Anderson <[EMAIL PROTECTED]> writes: > Before I roll up my sleeves and start trying to figure out what regexp > to munge on, does anybody know how to fix this so I get the desired > behavior? Is it even possible, or should I just go back to my old > system with explicit keywords?
Aha! emacs-wiki-wiki-visible-name forgot that emacs-wiki-name-regexp has a \\|. Here's a patch that fixes it: --- orig/emacs-wiki.el +++ mod/emacs-wiki.el @@ -1033,7 +1033,7 @@ (setq name (match-string 1 name)) (when (string-match "^mailto:" name) (setq name (substring name (match-end 0)))))) - (when (string-match (concat "^" emacs-wiki-name-regexp "$") + (when (string-match (concat "^\\(" emacs-wiki-name-regexp "\\)$") name) (string-match "#" name) (let ((base (substring name 0 (match-beginning 0))) Hi Mike! =) -- Sacha Chua <[EMAIL PROTECTED]> - open source geekette http://sacha.free.net.ph/ - PGP Key ID: 0xE7FDF77C interests: emacs, gnu/linux, personal information management, juggling sachac on irc.freenode.net#emacs . YM: sachachua83 _______________________________________________ emacs-wiki-discuss mailing list emacs-wiki-discuss@nongnu.org http://lists.nongnu.org/mailman/listinfo/emacs-wiki-discuss