diff options
| author | Joakim Verona | 2011-10-15 23:39:39 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-10-15 23:39:39 +0200 |
| commit | f3a03521aceea440d66ae9c606c92b250d75d6db (patch) | |
| tree | 520db3538acfc6ccebc8b01247521aad3890db19 | |
| parent | 38ea27d5ef38b273942e90a095509883320d5c0b (diff) | |
| download | emacs-f3a03521aceea440d66ae9c606c92b250d75d6db.tar.gz emacs-f3a03521aceea440d66ae9c606c92b250d75d6db.zip | |
home end keys fix
| -rw-r--r-- | README.xwidget | 2 | ||||
| -rw-r--r-- | lisp/xwidget.el | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/README.xwidget b/README.xwidget index b7f67dd7acd..15a2fecdd0b 100644 --- a/README.xwidget +++ b/README.xwidget | |||
| @@ -1416,6 +1416,8 @@ Indeed, this would require better DOM integration. | |||
| 1416 | - pressing 'home' and 'end' puts nonsense into minibuffer | 1416 | - pressing 'home' and 'end' puts nonsense into minibuffer |
| 1417 | 1417 | ||
| 1418 | Probably because the Image mode derivative is mostly a hack. | 1418 | Probably because the Image mode derivative is mostly a hack. |
| 1419 | fixed now I think. | ||
| 1420 | |||
| 1419 | 1421 | ||
| 1420 | - internal links (page.html#section) do not work | 1422 | - internal links (page.html#section) do not work |
| 1421 | 1423 | ||
diff --git a/lisp/xwidget.el b/lisp/xwidget.el index 83f95852866..ed6739cf98e 100644 --- a/lisp/xwidget.el +++ b/lisp/xwidget.el | |||
| @@ -128,8 +128,8 @@ defaults to the string looking like a url around the cursor position." | |||
| 128 | (define-key map [remap previous-line] (xwidget-image-mode-navigation-adaptor-p 'image-previous-line)) | 128 | (define-key map [remap previous-line] (xwidget-image-mode-navigation-adaptor-p 'image-previous-line)) |
| 129 | (define-key map [remap next-line] (xwidget-image-mode-navigation-adaptor-p 'image-next-line)) | 129 | (define-key map [remap next-line] (xwidget-image-mode-navigation-adaptor-p 'image-next-line)) |
| 130 | 130 | ||
| 131 | (define-key map [remap move-beginning-of-line] (xwidget-image-mode-navigation-adaptor 'image-bol)) | 131 | (define-key map [remap move-beginning-of-line] (xwidget-image-mode-navigation-adaptor-p 'image-bol)) |
| 132 | (define-key map [remap move-end-of-line] (xwidget-image-mode-navigation-adaptor 'image-eol)) | 132 | (define-key map [remap move-end-of-line] (xwidget-image-mode-navigation-adaptor-p 'image-eol)) |
| 133 | (define-key map [remap beginning-of-buffer] (xwidget-image-mode-navigation-adaptor 'image-bob)) | 133 | (define-key map [remap beginning-of-buffer] (xwidget-image-mode-navigation-adaptor 'image-bob)) |
| 134 | (define-key map [remap end-of-buffer] (xwidget-image-mode-navigation-adaptor 'image-eob)) | 134 | (define-key map [remap end-of-buffer] (xwidget-image-mode-navigation-adaptor 'image-eob)) |
| 135 | map) | 135 | map) |