Skip to content

Commit 505ed06

Browse files
committed
; Some that->than fixes.
1 parent 3910117 commit 505ed06

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lisp/disp-table.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ for a graphical frame."
221221
(defun make-glyph-code (char &optional face)
222222
"Return a glyph code representing char CHAR with face FACE."
223223
;; Due to limitations on Emacs integer values, faces with
224-
;; face id greater that 512 are silently ignored.
224+
;; face id greater than 512 are silently ignored.
225225
(if (not face)
226226
char
227227
(let ((fid (face-id face)))

lisp/speedbar.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ argument."
17031703
(put-text-property start end 'help-echo #'dframe-help-echo))
17041704
(if function (put-text-property start end 'speedbar-function function))
17051705
(if token (put-text-property start end 'speedbar-token token))
1706-
;; So far the only text we have is less that 3 chars.
1706+
;; So far the only text we have is less than 3 chars.
17071707
(if (<= (- end start) 3)
17081708
(speedbar-insert-image-button-maybe start (- end start)))
17091709
)

src/xdisp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8572,7 +8572,7 @@ compute_stop_pos_backwards (struct it *it)
85728572
position before that. This is called when we bump into a stop
85738573
position while reordering bidirectional text. CHARPOS should be
85748574
the last previously processed stop_pos (or BEGV/0, if none were
8575-
processed yet) whose position is less that IT's current
8575+
processed yet) whose position is less than IT's current
85768576
position. */
85778577

85788578
static void

0 commit comments

Comments
 (0)