diff options
| author | Po Lu | 2021-11-12 14:16:31 +0800 |
|---|---|---|
| committer | Po Lu | 2021-11-12 14:16:31 +0800 |
| commit | 070d6297ca468b197744c94df0c17fb09f47f67a (patch) | |
| tree | 1e908ed4fdad61e135ce160ad9984a1e67e7906c /src | |
| parent | ea54498f3a65cc2d2d1da93610b1a1f6eccb9b10 (diff) | |
| download | emacs-070d6297ca468b197744c94df0c17fb09f47f67a.tar.gz emacs-070d6297ca468b197744c94df0c17fb09f47f67a.zip | |
Fix doc string for xwidget-webkit-load-html
* src/xwidget.c (Fxwidget_webkit_load_html): Fix doc string.
Diffstat (limited to 'src')
| -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 4d0bc44a153..02589ae1927 100644 --- a/src/xwidget.c +++ b/src/xwidget.c | |||
| @@ -2325,7 +2325,7 @@ DEFUN ("xwidget-webkit-load-html", Fxwidget_webkit_load_html, | |||
| 2325 | doc: /* Make XWIDGET's WebKit widget render TEXT. | 2325 | doc: /* Make XWIDGET's WebKit widget render TEXT. |
| 2326 | XWIDGET should be a WebKit xwidget, that will receive TEXT. TEXT | 2326 | XWIDGET should be a WebKit xwidget, that will receive TEXT. TEXT |
| 2327 | should be a string that will be displayed by XWIDGET as HTML markup. | 2327 | should be a string that will be displayed by XWIDGET as HTML markup. |
| 2328 | BASE_URI should be a string containing a URI that is used to locate | 2328 | BASE-URI should be a string containing a URI that is used to locate |
| 2329 | resources with relative URLs, and if not specified, defaults | 2329 | resources with relative URLs, and if not specified, defaults |
| 2330 | to "about:blank". */) | 2330 | to "about:blank". */) |
| 2331 | (Lisp_Object xwidget, Lisp_Object text, Lisp_Object base_uri) | 2331 | (Lisp_Object xwidget, Lisp_Object text, Lisp_Object base_uri) |