]> code.delx.au - gnu-emacs/commitdiff
Merge from origin/emacs-25
authorJohn Wiegley <johnw@newartisans.com>
Fri, 4 Mar 2016 07:53:08 +0000 (23:53 -0800)
committerJohn Wiegley <johnw@newartisans.com>
Fri, 4 Mar 2016 07:53:08 +0000 (23:53 -0800)
b13cab6 Add a eww command to toggle paragraph direction
4e46128 * nextstep/WISHLIST: Merge into etc/TODO and remove.
9e078e5 Fix char signedness issue in bidi code
064adf6 * lib-src/pop.c (socket_connection): Fix format string.
14060a9 Avoid inflooping in thing-at-point-looking-at
098d47b * lisp/emacs-lisp/derived.el (define-derived-mode): Revert
        indent change.
b5db8e0 etc/PROBLEMS: Mention problems with using file descriptors
ec10ef9 * lisp/apropos.el (apropos-variable): Doc fix.  (Bug#22813).
d2dd614 Remove unneeded workaround in xftfont.c
9b7593c ; * etc/NEWS: Reflect latest changes in saveplace.
fde0cd1 * lisp/saveplace.el (save-place-local-mode): New minor mode
06a872b Fix redisplay on a TTY after 'make-frame'
95f5a43 Make double-click-1 work with unbalanced parens in CC Mode.
        Fixes bug#5560.
7d206fc Input method polish-slash should not use keyboard translation
8be32cf Fix an assertion
040e0d6 Fix 'toggle-save-place'
5244db2 * src/keyboard.c: Don't inadvertently set immediate_echo (bug#22581)

1  2 
doc/misc/eww.texi
etc/NEWS
lisp/net/eww.el
src/dispnew.c
src/keyboard.c
src/xdisp.c

Simple merge
diff --cc etc/NEWS
index 8c7f4942ac5b3c54b724edacbc097a7779d132b2,8d8660526ed27c16974490da3c76d2aa40b1837d..8725049779de475602db03b2c8ef00ea211ce158
+++ b/etc/NEWS
@@@ -865,13 -709,10 +866,17 @@@ customize the `shr-use-colors' variable
  textual parts of a web page and display only that, leaving menus and
  the like off the page.
  
+ +++
+ *** A new command `D' (`eww-toggle-paragraph-direction') allows you to
+ toggle the paragraph direction between left-to-right and right-to-left.
 +---
 +*** Images that are being loaded are now marked with grey
 +"placeholder" images of the size specified by the HTML.  They are then
 +replaced by the real images asynchronously, which will also now
 +respect width/height HTML specs (unless they specify widths/heights
 +bigger than the current window).
 +
  ---
  *** You can now use several eww buffers in parallel by renaming eww
  buffers you want to keep separate.
diff --cc lisp/net/eww.el
index 3c3736ac3769163d08f7eb99421333c603b8fabb,886b4b9a503fb848be99fc7ba095229e71ed81fa..d37b1b3261bb6c2a6f3b7cd654cb7befe29bcad8
@@@ -698,10 -697,9 +707,11 @@@ the like.
      (define-key map "R" 'eww-readable)
      (define-key map "H" 'eww-list-histories)
      (define-key map "E" 'eww-set-character-encoding)
 +    (define-key map "s" 'eww-switch-to-buffer)
      (define-key map "S" 'eww-list-buffers)
      (define-key map "F" 'eww-toggle-fonts)
+     (define-key map "D" 'eww-toggle-paragraph-direction)
 +    (define-key map [(meta C)] 'eww-toggle-colors)
  
      (define-key map "b" 'eww-add-bookmark)
      (define-key map "B" 'eww-list-bookmarks)
        ["Add bookmark" eww-add-bookmark t]
        ["List bookmarks" eww-list-bookmarks t]
        ["List cookies" url-cookie-list t]
-        ["Character Encoding" eww-set-character-encoding]))
 +      ["Toggle fonts" eww-toggle-fonts t]
 +      ["Toggle colors" eww-toggle-colors t]
+         ["Character Encoding" eww-set-character-encoding]
+         ["Toggle Paragraph Direction" eww-toggle-paragraph-direction]))
      map))
  
  (defvar eww-tool-bar-map
diff --cc src/dispnew.c
Simple merge
diff --cc src/keyboard.c
Simple merge
diff --cc src/xdisp.c
Simple merge