]> code.delx.au - gnu-emacs/commitdiff
Merge from origin/emacs-25
authorJohn Wiegley <johnw@newartisans.com>
Mon, 22 Feb 2016 19:33:54 +0000 (11:33 -0800)
committerJohn Wiegley <johnw@newartisans.com>
Mon, 22 Feb 2016 19:33:54 +0000 (11:33 -0800)
a9c48d5 Additional fixes for file notification
6bd9d69 Fix documentation of 'global-disable-point-adjustment'
8c22ac9 ; Spelling fix
2975784 Set file modes of pinentry socket for extra safety
2667b3e Clarify GnuPG version compatibility chapter
5e34c36 Revert "Change the default socket location for pinentry"
e19c1c3 Kill off xref--display-history
5698947 Keep the xref buffer visible until the user quits it explicitly
e34fbde Change the default socket location for pinentry
5f89658 Mention how to enable pinentry feature
db51224 Sync with gnulib
aa5a794 Remove `semanticdb-save-all-db-idle' from `auto-save-hook'
2d8b2fd Restore point when writing semantic table to disk
27d3430 Mention pinentry.el in epa manual
5baa001 Fix Bug#22736
7261355 Grammar fix in doc string
d0f3b18 Naming fix for consistency
74ec92d Prefer customized value for GnuPG executable
ea0b604 Fix memory reservation on MS-Windows
c5f72aa Update NextStep readme and add wish list.
6de26a7 Report also result in `file-notify--test-event-handler'
5d17ae7 Improve file-notify-test08-watched-file-in-watched-dir
1cb1268 Fix todo-mode item date editing bugs
1e996cf Fix "[:upper:]" for non-ASCII characters
896f993 Allow customising the article mode cursor behavior
24c1c1d Use pop-to-buffer-same-window in woman.el
2a75f64 New filenotify test for bug#22736
c9bccf7 Report critical battery errors
d675db9 Make eww message toggling message clearer
5e0bb40 * lisp/calc/calc-units.el (math-standard-units): Update to 2014 CODATA adjustment.
fa8fd65 ; Improve character-folding entries in NEWS
3722a69 Fix bugs in window resizing code
289d5c6 Fix decoding DOS EOL in a unibyte buffer
2abcb06 Correct c-parse-state cache manipulation error.
14aec91 Take advantage of new GnuPG version check function
e80c2a7 Make GnuPG version check robuster
15a9464 Fix x-load-color-file pointer signedness
132dbf0 * lisp/time-stamp.el (time-stamp-time-zone): Fix doc string punct.
78ab6f1 Follow convention for greek letter constants.
106b5bb Add Stefan-Boltzmann constant to calc units table.
b96baa8 * lisp/calc/calc-units.el (math-build-units-table-buffer): Use special-mode.
5f91cf9 Avoid loading cl-lib for term/xterm.elc, eg in -Q -nw.  (Bug#22669)
2d40f7d Fix soffice UserInstallation-URL for Windows
b1a3ebe Fix display of <pre> elements
57d0e3d ; * lisp/help-fns.el: Remove outdated comment.
7a0628d ; * admin/make-tarball.txt: Mention cleaning.

1  2 
doc/misc/gnus.texi
etc/NEWS
lisp/emacs-lisp/package.el
lisp/gnus/gnus-art.el
lisp/help-fns.el
lisp/net/eww.el
lisp/progmodes/cc-engine.el
lisp/time-stamp.el
src/keyboard.c
test/lisp/filenotify-tests.el

Simple merge
diff --cc etc/NEWS
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc lisp/net/eww.el
index 7f9f4fad4142229dd84ae67bdc714d8eb848f2bf,796eacf274e2dc464b699cbdd5ab4973a20817ed..91a17755244db488531e51284fe72c7cfcedeb3d
@@@ -1531,21 -1502,11 +1535,20 @@@ If CHARSET is nil then use UTF-8.
  (defun eww-toggle-fonts ()
    "Toggle whether to use monospaced or font-enabled layouts."
    (interactive)
-   (message "Fonts are now %s"
-          (if (setq shr-use-fonts (not shr-use-fonts))
-              "on"
-            "off"))
-   (eww-reload))
+   (setq shr-use-fonts (not shr-use-fonts))
+   (eww-reload)
+   (message "Proportional fonts are now %s"
+            (if shr-use-fonts "on" "off")))
  
 +(defun eww-toggle-colors ()
 +  "Toggle whether to use HTML-specified colors or not."
 +  (interactive)
 +  (message "Colors are now %s"
 +         (if (setq shr-use-colors (not shr-use-colors))
 +             "on"
 +           "off"))
 +  (eww-reload))
 +
  ;;; Bookmarks code
  
  (defvar eww-bookmarks nil)
Simple merge
index 79524fb7280ebd3352ff32c5305af426452895b2,d4cddc92f9463b6438abd64cf903a5d7918716f6..c053ea6e924ae5c6bd8c2ac1dac195b18f9ee58f
@@@ -104,9 -107,20 +104,9 @@@ otherwise would have been updated.
    :group 'time-stamp
    :version "19.29")
  
 -(defcustom time-stamp-old-format-warn 'ask
 -  "Action if `time-stamp-format' is an old-style list.
 -If `error', the format is not used.  If `ask', the user is queried about
 -using the time-stamp-format.  If `warn', a warning is displayed.
 -If nil, no notification is given."
 -  :type '(choice (const :tag "Don't use the format" error)
 -                 (const ask)
 -                 (const warn)
 -               (const :tag "No notification" nil))
 -  :group 'time-stamp)
 -
  (defcustom time-stamp-time-zone nil
    "The time zone to be used by \\[time-stamp].
- Its format is that of the ZONE argument of the `format-time-string' function,"
+ Its format is that of the ZONE argument of the `format-time-string' function."
    :type '(choice (const :tag "Emacs local time" nil)
                   (const :tag "Universal Time" t)
                   (const :tag "system wall clock time" wall)
diff --cc src/keyboard.c
Simple merge
Simple merge