diff options
author | Eli Zaretskii <eliz@gnu.org> | 2018-01-19 11:54:44 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2018-01-19 11:54:44 +0200 |
commit | a41ad3df9ff4377a99439b4541535c522fe2f845 (patch) | |
tree | c2f18ee40c9e15985cae03c3276f60bef5654886 /src/xwidget.c | |
parent | c28d4b6d8e1ad3d8c96329239a01af9d1dc048c5 (diff) | |
download | emacs-a41ad3df9ff4377a99439b4541535c522fe2f845.tar.gz emacs-a41ad3df9ff4377a99439b4541535c522fe2f845.tar.bz2 emacs-a41ad3df9ff4377a99439b4541535c522fe2f845.zip |
Don't unnecessarily use non-ASCII characters in C sources
* 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.
Diffstat (limited to 'src/xwidget.c')
-rw-r--r-- | src/xwidget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xwidget.c b/src/xwidget.c index e095b0be56f..530d1af707a 100644 --- a/src/xwidget.c +++ b/src/xwidget.c @@ -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_CALLBACK’s 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), |