summaryrefslogtreecommitdiff
path: root/lisp/progmodes/compile.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-12-01 16:36:09 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-12-01 16:36:09 +0100
commit70ecdebc92c879af90f2d25a2b751d1cc4f3f80d (patch)
tree27d9ebd0090f107cb4381b8155e08097c988a471 /lisp/progmodes/compile.el
parenta86ccb5f9dd4a5fe8e6af974d7f577e7b5d0a8d4 (diff)
downloademacs-70ecdebc92c879af90f2d25a2b751d1cc4f3f80d.tar.gz
; Fix typos (don't abbreviate "with" or "without")
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 18c996e8997..e8ada9388e1 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -2807,7 +2807,7 @@ This is the value of `next-error-function' in Compilation buffers."
(goto-char (point-min))
;; Treat file's found lines in forward order, 1 by 1.
(dolist (line (reverse (cddr (compilation--loc->file-struct loc))))
- (when (car line) ; else this is a filename w/o a line#
+ (when (car line) ; else this is a filename without a line#
(compilation-beginning-of-line (- (car line) last -1))
(setq last (car line)))
;; Treat line's found columns and store/update a marker for each.