# HG changeset patch # User Stefan Monnier # Date 1152285986 0 # Node ID a745634e80672dec31fabe621d7a557f957c625e # Parent a1e8435263b77a67afbfc5f804851fdd492a91c7 *** empty log message *** diff -r a1e8435263b7 -r a745634e8067 lisp/ChangeLog --- a/lisp/ChangeLog Fri Jul 07 15:17:35 2006 +0000 +++ b/lisp/ChangeLog Fri Jul 07 15:26:26 2006 +0000 @@ -1,5 +1,8 @@ 2006-07-07 Stefan Monnier + * progmodes/compile.el (compilation-error-regexp-alist-alist) : + Use shy regexp. Fix incorrect backref to potentially unmatched group. + * dirtrack.el (dirtrack-default-directory-function): Remove. (dirtrack-directory-function): Use file-name-as-directory. (dirtrack-windows-directory-function): Simplify. diff -r a1e8435263b7 -r a745634e8067 man/programs.texi --- a/man/programs.texi Fri Jul 07 15:17:35 2006 +0000 +++ b/man/programs.texi Fri Jul 07 15:26:26 2006 +0000 @@ -949,13 +949,14 @@ comments in certain contexts. For example, in Lisp code, comments which start with two semicolons are indented as if they were lines of code, instead of at the comment column. Comments which start with three -semicolons are supposed to start at the left margin. Emacs understands +semicolons are supposed to start at the left margin and are often used +for sectioning purposes. Emacs understands these conventions by indenting a double-semicolon comment using @key{TAB}, and by not changing the indentation of a triple-semicolon comment at all. @example ;; This function is just an example. -;; Here either two or three semicolons are appropriate. +;;; Here either two or three semicolons are appropriate. (defun foo (x) ;;; And now, the first part of the function: ;; The following line adds one.