Message-ID: <87d5ntfnh5.fsf-monnier+gnu.emacs.sources@gnu.org> Newsgroups: gnu.emacs.sources,gnu.emacs.help Subject: Re: texinfo-fill-workaround.el -- no break after @: when filling References: <873bq8d7yd.fsf-monnier+gnu.emacs.sources@gnu.org> <87iry0jb0h.fsf-monnier+gnu.emacs.sources@gnu.org> From: Stefan Monnier Date: Thu, 01 Sep 2005 00:00:54 -0400 Organization: Bell Sympatico > and a similarly tiny function for no break after which I think much improves human readability > http://www.emacswiki.org/cgi-bin/wiki/HtmlMode In Emacs-22, this is already done for all tags: (defun sgml-fill-nobreak () ;; Don't break between a tag name and its first argument. (save-excursion (skip-chars-backward " \t") (and (not (zerop (skip-syntax-backward "w_"))) (skip-chars-backward "/?!") (eq (char-before) ?<)))) Only problem is that with