Re: syntax highlight fix for add-log.el

2005-04-04 Thread Marcelo Toledo
Works great Lute, thanks. Can you install please? Lute Kamstra <[EMAIL PROTECTED]> writes: > Your patch goes only half the way in fixing the problem you describe. > What about this change to fix the rest? -- Marcelo Toledo [EMAIL PROTECTED] http://www.marcelotoledo.org Mobile: 55 71 9116-1101

Re: syntax highlight fix for add-log.el

2005-04-04 Thread Richard Stallman
;; File names. ! ("^\\(?: \\{8\\}\\|\t\\)\\* \\([^ ,:([\n]+\\)" This seems to insist on 8 spaces. It can be any number of spaces; one space is enough. (log-edit-previous-comment arg) ! (indent-region (point-min) (point-max) nil) This change looks like a no

Re: syntax highlight fix for add-log.el

2005-04-04 Thread Marcelo Toledo
Richard Stallman <[EMAIL PROTECTED]> writes: > ;; File names. > ! ("^\\(?: \\{8\\}\\|\t\\)\\* \\([^ ,:([\n]+\\)" > > This seems to insist on 8 spaces. > It can be any number of spaces; one space is enough. Modified to work with 1 or more spaces. > (log-edit-previous-com

Re: syntax highlight fix for add-log.el

2005-04-04 Thread Lute Kamstra
Marcelo Toledo <[EMAIL PROTECTED]> writes: > The manual describing a Change Log entry, says: (...) "Aside from > these header lines, every line in the change log starts with a space > or a tab.". Your patch goes only half the way in fixing the problem you describe. What about this change to fix t

syntax highlight fix for add-log.el

2005-04-02 Thread Marcelo Toledo
The manual describing a Change Log entry, says: (...) "Aside from these header lines, every line in the change log starts with a space or a tab.". The font-lock was not highlighting lines started with spaces, added support for it and corrected an `indent-region' call. Can I install it? Index: li