Changeset 4210 for trunk/lisp/progmodes/compile.el
- Timestamp:
- 06/02/07 09:29:41 (1 year ago)
- Files:
-
- trunk/lisp/progmodes/compile.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/progmodes/compile.el
r4207 r4210 1427 1427 (cons msg exit-status))) 1428 1428 (omax (point-max)) 1429 (opoint (point))) 1429 (opoint (point)) 1430 (cur-buffer (current-buffer))) 1430 1431 ;; Record where we put the message, so we can ignore it later on. 1431 1432 (goto-char omax) … … 1448 1449 (with-no-warnings 1449 1450 (if compilation-finish-function 1450 (funcall compilation-finish-function (current-buffer)msg)))1451 (run-hook-with-args compilation-finish-functions (current-buffer)msg)))1451 (funcall compilation-finish-function cur-buffer msg))) 1452 (run-hook-with-args 'compilation-finish-functions cur-buffer msg))) 1452 1453 1453 1454 ;; Called when compilation process changes state.
