diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-11-20 12:59:39 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-11-20 12:59:39 +0100 |
commit | 16318bfb518aa7bc06e502e6fad7e53ec91067f9 (patch) | |
tree | e27122c0a061762bc483ed245ca62ac8d957f881 /src/font.h | |
parent | 6082ab9697fa8c18e9049d24840d07efe6f95625 (diff) | |
download | emacs-16318bfb518aa7bc06e502e6fad7e53ec91067f9.tar.gz emacs-16318bfb518aa7bc06e502e6fad7e53ec91067f9.tar.bz2 emacs-16318bfb518aa7bc06e502e6fad7e53ec91067f9.zip |
; Fix typos
Diffstat (limited to 'src/font.h')
-rw-r--r-- | src/font.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/font.h b/src/font.h index 3475189206f..d36c45a53c4 100644 --- a/src/font.h +++ b/src/font.h @@ -220,13 +220,13 @@ enum font_property_index #define FONT_WIDTH_FOR_FACE(font) \ font_style_symbolic (font, FONT_WIDTH_INDEX, true) -/* Return the numeric weight value corresponding ot the symbol NAME. */ +/* Return the numeric weight value corresponding to the symbol NAME. */ #define FONT_WEIGHT_NAME_NUMERIC(name) \ (font_style_to_value (FONT_WEIGHT_INDEX, (name), false) >> 8) -/* Return the numeric slant value corresponding ot the symbol NAME. */ +/* Return the numeric slant value corresponding to the symbol NAME. */ #define FONT_SLANT_NAME_NUMERIC(name) \ (font_style_to_value (FONT_SLANT_INDEX, (name), false) >> 8) -/* Return the numeric width value corresponding ot the symbol NAME. */ +/* Return the numeric width value corresponding to the symbol NAME. */ #define FONT_WIDTH_NAME_NUMERIC(name) \ (font_style_to_value (FONT_WIDTH_INDEX, (name), false) >> 8) |