# HG changeset patch # User Roland McGrath # Date 766871557 0 # Node ID 3723e842825c9c45d4451f021e5549b100a5bb72 # Parent 674dceb3bb4f6916405aa5cae7138b529b9348f0 (compilation-parse-errors): Fix references for column number, 3 elt not 2nd. diff -r 674dceb3bb4f -r 3723e842825c lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Wed Apr 20 19:23:04 1994 +0000 +++ b/lisp/progmodes/compile.el Wed Apr 20 19:52:37 1994 +0000 @@ -1100,8 +1100,8 @@ (cons (list subexpr (+ subexpr (nth 1 (car alist))) (+ subexpr (nth 2 (car alist))) - (and (nth 2 (car alist)) - (+ subexpr (nth 2 (car alist))))) + (and (nth 3 (car alist)) + (+ subexpr (nth 3 (car alist))))) error-regexp-groups)) (setq subexpr (+ subexpr 1 (count-regexp-groupings (car (car alist))))) (setq alist (cdr alist)))