diff options
| -rw-r--r-- | lisp/disp-table.el | 2 | ||||
| -rw-r--r-- | lisp/speedbar.el | 2 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index fe63573c0a3..2e88d350245 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el | |||
| @@ -221,7 +221,7 @@ for a graphical frame." | |||
| 221 | (defun make-glyph-code (char &optional face) | 221 | (defun make-glyph-code (char &optional face) |
| 222 | "Return a glyph code representing char CHAR with face FACE." | 222 | "Return a glyph code representing char CHAR with face FACE." |
| 223 | ;; Due to limitations on Emacs integer values, faces with | 223 | ;; 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. |
| 225 | (if (not face) | 225 | (if (not face) |
| 226 | char | 226 | char |
| 227 | (let ((fid (face-id face))) | 227 | (let ((fid (face-id face))) |
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 646f3289110..4b5129f33c7 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el | |||
| @@ -1703,7 +1703,7 @@ argument." | |||
| 1703 | (put-text-property start end 'help-echo #'dframe-help-echo)) | 1703 | (put-text-property start end 'help-echo #'dframe-help-echo)) |
| 1704 | (if function (put-text-property start end 'speedbar-function function)) | 1704 | (if function (put-text-property start end 'speedbar-function function)) |
| 1705 | (if token (put-text-property start end 'speedbar-token token)) | 1705 | (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. |
| 1707 | (if (<= (- end start) 3) | 1707 | (if (<= (- end start) 3) |
| 1708 | (speedbar-insert-image-button-maybe start (- end start))) | 1708 | (speedbar-insert-image-button-maybe start (- end start))) |
| 1709 | ) | 1709 | ) |
diff --git a/src/xdisp.c b/src/xdisp.c index 4856a7b13b6..723309a31d7 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -8572,7 +8572,7 @@ compute_stop_pos_backwards (struct it *it) | |||
| 8572 | position before that. This is called when we bump into a stop | 8572 | position before that. This is called when we bump into a stop |
| 8573 | position while reordering bidirectional text. CHARPOS should be | 8573 | position while reordering bidirectional text. CHARPOS should be |
| 8574 | the last previously processed stop_pos (or BEGV/0, if none were | 8574 | 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 |
| 8576 | position. */ | 8576 | position. */ |
| 8577 | 8577 | ||
| 8578 | static void | 8578 | static void |