equal
deleted
inserted
replaced
1224 |
1224 |
1225 (setq compile-auto-highlight t) |
1225 (setq compile-auto-highlight t) |
1226 (setq compile-command "make ") |
1226 (setq compile-command "make ") |
1227 (when (eq system-type 'berkeley-unix) |
1227 (when (eq system-type 'berkeley-unix) |
1228 (setq compile-command "gmake ")) |
1228 (setq compile-command "gmake ")) |
1229 ;; compilation window shall scroll down if not 0 |
1229 ;; With '1' compilation window shall scroll down, with `first-error' stops scrolling at the first error. |
1230 (setq compilation-scroll-output 1) |
1230 (setq compilation-scroll-output 1) |
1231 |
1231 |
1232 ;; Show error in EN locale to easy search how fix problem in docs and Internet. |
1232 ;; Show error in EN locale to easy search how fix problem in docs and Internet. |
1233 (setq compilation-environment '("LANG=C")) |
1233 (setq compilation-environment '("LANG=C")) |
1234 |
1234 |