aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/international/fontset.el2
-rw-r--r--src/ftcrfont.c4
-rw-r--r--src/xdisp.c4
-rw-r--r--test/automated/help-fns.el4
4 files changed, 7 insertions, 7 deletions
diff --git a/lisp/international/fontset.el b/lisp/international/fontset.el
index acc3732fb2a..279382b6f5a 100644
--- a/lisp/international/fontset.el
+++ b/lisp/international/fontset.el
@@ -743,7 +743,7 @@
743 (#xFE10 . #xFE1F) ;; Vertical Forms 743 (#xFE10 . #xFE1F) ;; Vertical Forms
744 (#x10100 . #x1013F) ;; Aegean Numbers 744 (#x10100 . #x1013F) ;; Aegean Numbers
745 (#x102E0 . #x102FF) ;; Coptic Epact Numbers 745 (#x102E0 . #x102FF) ;; Coptic Epact Numbers
746 (#x1D000 . #x1D0FF) ;; Byzanthine Musical Symbols 746 (#x1D000 . #x1D0FF) ;; Byzantine Musical Symbols
747 (#x1D200 . #x1D24F) ;; Ancient Greek Musical Notation 747 (#x1D200 . #x1D24F) ;; Ancient Greek Musical Notation
748 (#x1F0A0 . #x1F0FF) ;; Playing Cards 748 (#x1F0A0 . #x1F0FF) ;; Playing Cards
749 (#x1F100 . #x1F1FF) ;; Enclosed Alphanumeric Suppl 749 (#x1F100 . #x1F1FF) ;; Enclosed Alphanumeric Suppl
diff --git a/src/ftcrfont.c b/src/ftcrfont.c
index 0cbfd804109..df3aa596f6b 100644
--- a/src/ftcrfont.c
+++ b/src/ftcrfont.c
@@ -34,8 +34,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
34 34
35/* FTCR font driver. */ 35/* FTCR font driver. */
36 36
37/* The actual structure for ftcr font that can be casted to struct 37/* The actual structure for FTCR font. A pointer to this structure
38 font. */ 38 can be cast to struct font *. */
39 39
40struct ftcrfont_info 40struct ftcrfont_info
41{ 41{
diff --git a/src/xdisp.c b/src/xdisp.c
index f0e30900043..7c153302803 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -24618,7 +24618,7 @@ normal_char_ascent_descent (struct font *font, int c, int *ascent, int *descent)
24618 24618
24619/* A subroutine that computes a reasonable "normal character height" 24619/* A subroutine that computes a reasonable "normal character height"
24620 for fonts that claim preposterously large vertical dimensions, but 24620 for fonts that claim preposterously large vertical dimensions, but
24621 whose glyphs are actually reasonably sized. C is the charcater 24621 whose glyphs are actually reasonably sized. C is the character
24622 whose metrics to use for those fonts, or -1 for default 24622 whose metrics to use for those fonts, or -1 for default
24623 character. */ 24623 character. */
24624static int 24624static int
@@ -26761,7 +26761,7 @@ x_produce_glyphs (struct it *it)
26761 don't let the row ascent and descent values (and the row 26761 don't let the row ascent and descent values (and the row
26762 height computed from them) be smaller than the "normal" 26762 height computed from them) be smaller than the "normal"
26763 character metrics. This avoids unpleasant effects 26763 character metrics. This avoids unpleasant effects
26764 whereby lines on display would change their heigh 26764 whereby lines on display would change their height
26765 depending on which characters are shown. */ 26765 depending on which characters are shown. */
26766 normal_char_ascent_descent (font, -1, &font_ascent, &font_descent); 26766 normal_char_ascent_descent (font, -1, &font_ascent, &font_descent);
26767 it->max_ascent = max (it->max_ascent, font_ascent); 26767 it->max_ascent = max (it->max_ascent, font_ascent);
diff --git a/test/automated/help-fns.el b/test/automated/help-fns.el
index 4815ac68257..b8772eb84d6 100644
--- a/test/automated/help-fns.el
+++ b/test/automated/help-fns.el
@@ -37,7 +37,7 @@
37(defun abc\\\[universal-argument\]b\`c\'d\\e\"f (x) 37(defun abc\\\[universal-argument\]b\`c\'d\\e\"f (x)
38 "A function with a funny name. 38 "A function with a funny name.
39 39
40\(fn XYYZZY)" 40\(fn XYZZY)"
41 x) 41 x)
42 42
43(defun defgh\\\[universal-argument\]b\`c\'d\\e\"f (x) 43(defun defgh\\\[universal-argument\]b\`c\'d\\e\"f (x)
@@ -50,7 +50,7 @@
50 (with-current-buffer "*Help*" 50 (with-current-buffer "*Help*"
51 (goto-char (point-min)) 51 (goto-char (point-min))
52 (should (search-forward 52 (should (search-forward
53 "(abc\\\\\\[universal-argument\\]b\\`c\\'d\\\\e\\\"f XYYZZY)"))) 53 "(abc\\\\\\[universal-argument\\]b\\`c\\'d\\\\e\\\"f XYZZY)")))
54 (describe-function 'defgh\\\[universal-argument\]b\`c\'d\\e\"f) 54 (describe-function 'defgh\\\[universal-argument\]b\`c\'d\\e\"f)
55 (with-current-buffer "*Help*" 55 (with-current-buffer "*Help*"
56 (goto-char (point-min)) 56 (goto-char (point-min))