diff options
author | Masahiro Nakamura <tsuucat@icloud.com> | 2020-09-15 15:35:32 +0900 |
---|---|---|
committer | Alan Third <alan@idiocy.org> | 2020-09-16 00:51:04 +0100 |
commit | f028a893a552b0c38c35f949addb6a891e8586cc (patch) | |
tree | 9586091e1482cead253b4d4331164199c3858568 /src/nsxwidget.m | |
parent | eeae97282e245c82c470557d76a252a833aed5d5 (diff) | |
download | emacs-f028a893a552b0c38c35f949addb6a891e8586cc.tar.gz |
; Minor fix for nsxwidget patch
* lisp/xwdget.el (xwidget-webkit-download-dir)
(xwidget-webkit-save-as-file): Set version to 28.1 because the patch
was introduced in Emacs 28.0.50.
* src/nsxwidget.m: Fix typo.
Diffstat (limited to 'src/nsxwidget.m')
-rw-r--r-- | src/nsxwidget.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nsxwidget.m b/src/nsxwidget.m index e81ca7fc0cb..2910d97225a 100644 --- a/src/nsxwidget.m +++ b/src/nsxwidget.m @@ -33,14 +33,14 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* Thoughts on NS Cocoa xwidget and webkit2: Webkit2 process architecture seems to be very hostile for offscreen - rendering techniques, which is used by GTK xwiget implementation; + rendering techniques, which is used by GTK xwidget implementation; Specifically NSView level view sharing / copying is not working. *** So only one view can be associcated with a model. *** With this decision, implementation is plain and can expect best out of webkit2's rationale. But process and session structures will - diverge from GTK xwiget. Though, cosmetically similar usages can + diverge from GTK xwidget. Though, cosmetically similar usages can be presented and will be preferred, if agreeable. For other widget types, OSR seems possible, but will not care for a |