]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't unnecessarily use non-ASCII characters in C sources
authorEli Zaretskii <eliz@gnu.org>
Fri, 19 Jan 2018 09:54:44 +0000 (11:54 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 19 Jan 2018 09:54:44 +0000 (11:54 +0200)
* src/xwidget.c (webkit_javascript_finished_cb):
* src/gtkutil.c (xg_check_special_colors):
* src/emacs-module.c (module_make_string):
* src/alloc.c (SET_STACK_TOP_ADDRESS): Don't use non-ASCII quote
characters.

src/alloc.c
src/emacs-module.c
src/gtkutil.c
src/xwidget.c

index 6704c51a20771bda658684b6036c34d7f20372f0..9d0e2d37e3cf05b43e41117f52b4a4da90d3598a 100644 (file)
@@ -5124,7 +5124,7 @@ typedef union
 #endif
 
 /* Set *P to the address of the top of the stack.  This must be a
-   macro, not a function, so that it is executed in the callers
+   macro, not a function, so that it is executed in the caller's
    environment.  It is not inside a do-while so that its storage
    survives the macro.  Callers should be declared NO_INLINE.  */
 #ifdef HAVE___BUILTIN_UNWIND_INIT
index 00f0e86d7da193d3d7403d17adc089e35e3c9c1a..1b19e8033df0cff70e33cb1bfdfd68ff5678a800 100644 (file)
@@ -574,7 +574,7 @@ module_make_string (emacs_env *env, const char *str, ptrdiff_t length)
   if (! (0 <= length && length <= STRING_BYTES_BOUND))
     xsignal0 (Qoverflow_error);
   /* FIXME: AUTO_STRING_WITH_LEN requires STR to be null-terminated,
-     but we shouldnt require that.  */
+     but we shouldn't require that.  */
   AUTO_STRING_WITH_LEN (lstr, str, length);
   return lisp_to_value (env,
                         code_convert_string_norecord (lstr, Qutf_8, false));
index 3ef0fa00a2c52c98467300be9df57d4f06d134dd..123236f5f08ae442db4f230a5996e6cfd4c84395 100644 (file)
@@ -580,8 +580,8 @@ xg_check_special_colors (struct frame *f,
       {
         GdkRGBA *c;
         /* FIXME: Retrieving the background color is deprecated in
-           GTK+ 3.16.  New versions of GTK+ dont use the concept of a
-           single background color any more, so we shouldnt query for
+           GTK+ 3.16.  New versions of GTK+ don't use the concept of a
+           single background color any more, so we shouldn't query for
            it.  */
         gtk_style_context_get (gsty, state,
                                GTK_STYLE_PROPERTY_BACKGROUND_COLOR, &c,
index e095b0be56f4b2708ba6d023edde84800a6f94d1..530d1af707ad20578b37900df804afbf6e676a9a 100644 (file)
@@ -389,7 +389,7 @@ webkit_javascript_finished_cb (GObject      *webview,
     /* Register an xwidget event here, which then runs the callback.
        This ensures that the callback runs in sync with the Emacs
        event loop.  */
-    /* FIXME: This might lead to disaster if LISP_CALLBACKs object
+    /* FIXME: This might lead to disaster if LISP_CALLBACK's object
        was garbage collected before now.  See the FIXME in
        Fxwidget_webkit_execute_script.  */
     store_xwidget_js_callback_event (xw, XIL ((intptr_t) lisp_callback),