aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2021-09-03 11:13:53 +0200
committerStefan Kangas2021-09-03 13:05:32 +0200
commit0cabf8bc363cdeace84523b251752c0aac32b31b (patch)
tree314c6c45d255ce573e1dc3477b7f480cf4dd63e3 /src
parentd1f324766631ad15b1e893463e93000298f44480 (diff)
downloademacs-0cabf8bc363cdeace84523b251752c0aac32b31b.tar.gz
emacs-0cabf8bc363cdeace84523b251752c0aac32b31b.zip
; Fix typos
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
-rw-r--r--src/frame.c2
-rw-r--r--src/image.c4
-rw-r--r--src/nsterm.m4
4 files changed, 6 insertions, 6 deletions
diff --git a/src/fns.c b/src/fns.c
index 5126439fd66..c39fce21c70 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1174,7 +1174,7 @@ string_make_multibyte (Lisp_Object string)
1174 1174
1175 1175
1176/* Convert STRING (if unibyte) to a multibyte string without changing 1176/* Convert STRING (if unibyte) to a multibyte string without changing
1177 the number of characters. Characters 0200 trough 0237 are 1177 the number of characters. Characters 0200 through 0237 are
1178 converted to eight-bit characters. */ 1178 converted to eight-bit characters. */
1179 1179
1180Lisp_Object 1180Lisp_Object
diff --git a/src/frame.c b/src/frame.c
index ab5dcc3664c..f95566818af 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -729,7 +729,7 @@ adjust_frame_size (struct frame *f, int new_text_width, int new_text_height,
729 && (f->new_width >= 0 || f->new_height >= 0)) 729 && (f->new_width >= 0 || f->new_height >= 0))
730 /* For implied resizes with inhibit 2 (external menu and tool 730 /* For implied resizes with inhibit 2 (external menu and tool
731 bar) pick up any new sizes the display engine has not 731 bar) pick up any new sizes the display engine has not
732 processed yet. Otherwsie, we would request the old sizes 732 processed yet. Otherwise, we would request the old sizes
733 which will make this request appear as a request to set new 733 which will make this request appear as a request to set new
734 sizes and have the WM react accordingly which is not TRT. 734 sizes and have the WM react accordingly which is not TRT.
735 735
diff --git a/src/image.c b/src/image.c
index bcd45eb4514..206c7baa2f8 100644
--- a/src/image.c
+++ b/src/image.c
@@ -10039,7 +10039,7 @@ svg_load_image (struct frame *f, struct image *img, char *contents,
10039#if LIBRSVG_CHECK_VERSION (2, 46, 0) 10039#if LIBRSVG_CHECK_VERSION (2, 46, 0)
10040 RsvgRectangle zero_rect, viewbox, out_logical_rect; 10040 RsvgRectangle zero_rect, viewbox, out_logical_rect;
10041 10041
10042 /* Try the instrinsic dimensions first. */ 10042 /* Try the intrinsic dimensions first. */
10043 gboolean has_width, has_height, has_viewbox; 10043 gboolean has_width, has_height, has_viewbox;
10044 RsvgLength iwidth, iheight; 10044 RsvgLength iwidth, iheight;
10045 double dpi = FRAME_DISPLAY_INFO (f)->resx; 10045 double dpi = FRAME_DISPLAY_INFO (f)->resx;
@@ -10074,7 +10074,7 @@ svg_load_image (struct frame *f, struct image *img, char *contents,
10074 } 10074 }
10075 else 10075 else
10076 { 10076 {
10077 /* We haven't found a useable set of sizes, so try working out 10077 /* We haven't found a usable set of sizes, so try working out
10078 the visible area. */ 10078 the visible area. */
10079 rsvg_handle_get_geometry_for_layer (rsvg_handle, NULL, 10079 rsvg_handle_get_geometry_for_layer (rsvg_handle, NULL,
10080 &zero_rect, &viewbox, 10080 &zero_rect, &viewbox,
diff --git a/src/nsterm.m b/src/nsterm.m
index 4bdc67c10b5..8d88f7bd3de 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -8369,14 +8369,14 @@ not_in_argv (NSString *arg)
8369 8369
8370 8370
8371#ifdef NS_IMPL_COCOA 8371#ifdef NS_IMPL_COCOA
8372 /* We have to set the accesibility subroles and/or the collection 8372 /* We have to set the accessibility subroles and/or the collection
8373 behaviors early otherwise child windows may not go fullscreen as 8373 behaviors early otherwise child windows may not go fullscreen as
8374 expected later. */ 8374 expected later. */
8375 8375
8376#if MAC_OS_X_VERSION_MIN_REQUIRED < 101000 8376#if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
8377 if ([child respondsToSelector:@selector(setAccessibilitySubrole:)]) 8377 if ([child respondsToSelector:@selector(setAccessibilitySubrole:)])
8378#endif 8378#endif
8379 /* Set the accessibilty subroles. */ 8379 /* Set the accessibility subroles. */
8380 if (parentFrame) 8380 if (parentFrame)
8381 [self setAccessibilitySubrole:NSAccessibilityFloatingWindowSubrole]; 8381 [self setAccessibilitySubrole:NSAccessibilityFloatingWindowSubrole];
8382 else 8382 else