aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2016-02-09 14:23:10 -0800
committerPaul Eggert2016-02-09 14:23:10 -0800
commitf55fc92f6804b821b7df374e973b859c6364996a (patch)
tree8292e5215739249aecc08578c38241abb9d2bb4d
parent44f853c4acda0634a3541116834c3e768bef650d (diff)
parent1eaf68f3689c49ee1d191ad3154563a365f7cf05 (diff)
downloademacs-f55fc92f6804b821b7df374e973b859c6364996a.tar.gz
emacs-f55fc92f6804b821b7df374e973b859c6364996a.zip
Merge from origin/emacs-25
1eaf68f * test/automated/file-notify-tests.el (file-notify-test06-many-events): d333716 ; * etc/NEWS: Expand news entry for scss-mode c32c16f ; Better document changes in ls-lisp default behavior dc6eed2 Fix doc string of tls-program
-rw-r--r--etc/NEWS13
-rw-r--r--lisp/net/tls.el3
-rw-r--r--test/lisp/filenotify-tests.el7
3 files changed, 17 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index a49bed14750..c2c5950891c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1352,7 +1352,8 @@ The main entry points are `cl-defgeneric' and `cl-defmethod'. See the
1352node "Generic Functions" in the Emacs Lisp manual for more details. 1352node "Generic Functions" in the Emacs Lisp manual for more details.
1353 1353
1354--- 1354---
1355** scss-mode (a minor variant of css-mode) 1355** scss-mode (a minor variant of css-mode) is a major mode for editing
1356SCSS (Sassy CSS) files.
1356 1357
1357--- 1358---
1358** let-alist is a new macro (and a package) that allows one to easily 1359** let-alist is a new macro (and a package) that allows one to easily
@@ -1663,8 +1664,14 @@ counterparts `string-lessp' and `string-equal'.
1663 1664
1664--- 1665---
1665*** The ls-lisp package uses `string-collate-lessp' to sort file names. 1666*** The ls-lisp package uses `string-collate-lessp' to sort file names.
1666If you want the old, locale-independent sorting, customize the new 1667The effect is that, on systems that use ls-lisp for Dired, the default
1667option `ls-lisp-use-string-collate' to a nil value. 1668sort order of the files in Dired is now different from what it was in
1669previous versions of Emacs. In particular, the file names are sorted
1670disregarding punctuation, accents, and diacritics, and letter case is
1671ignored. For example, files whose name begin with a period will no
1672longer appear near the beginning of the directory listing. If you
1673want the old, locale-independent sorting, customize the new option
1674`ls-lisp-use-string-collate' to the nil value.
1668 1675
1669+++ 1676+++
1670*** The MS-Windows specific variable `w32-collate-ignore-punctuation', 1677*** The MS-Windows specific variable `w32-collate-ignore-punctuation',
diff --git a/lisp/net/tls.el b/lisp/net/tls.el
index 30895d043c8..f1219fdddbd 100644
--- a/lisp/net/tls.el
+++ b/lisp/net/tls.el
@@ -82,7 +82,8 @@ and `gnutls-cli' (version 2.0.1) output."
82 "openssl s_client -connect %h:%p -no_ssl2 -ign_eof") 82 "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")
83 "List of strings containing commands to start TLS stream to a host. 83 "List of strings containing commands to start TLS stream to a host.
84Each entry in the list is tried until a connection is successful. 84Each entry in the list is tried until a connection is successful.
85%h is replaced with server hostname, %p with port to connect to. 85%h is replaced with the server hostname, %p with the port to
86connect to, and %t with a file name containing trusted certificates.
86The program should read input on stdin and write output to stdout. 87The program should read input on stdin and write output to stdout.
87 88
88See `tls-checktrust' on how to check trusted root certs. 89See `tls-checktrust' on how to check trusted root certs.
diff --git a/test/lisp/filenotify-tests.el b/test/lisp/filenotify-tests.el
index de64f5086d2..629d85be1ef 100644
--- a/test/lisp/filenotify-tests.el
+++ b/test/lisp/filenotify-tests.el
@@ -596,7 +596,7 @@ longer than timeout seconds for the events to be delivered."
596 (should (string-match "another text" (buffer-string))) 596 (should (string-match "another text" (buffer-string)))
597 597
598 ;; Stop file notification. Autorevert shall still work via polling. 598 ;; Stop file notification. Autorevert shall still work via polling.
599 ;; It doesn't work for `w32notify'. 599 ;; It doesn't work for w32notify.
600 (unless (string-equal (file-notify--test-library) "w32notify") 600 (unless (string-equal (file-notify--test-library) "w32notify")
601 (file-notify-rm-watch auto-revert-notify-watch-descriptor) 601 (file-notify-rm-watch auto-revert-notify-watch-descriptor)
602 (file-notify--wait-for-events 602 (file-notify--wait-for-events
@@ -797,7 +797,10 @@ longer than timeout seconds for the events to be delivered."
797 file-notify--test-tmpfile 797 file-notify--test-tmpfile
798 '(change) 'file-notify--test-event-handler))) 798 '(change) 'file-notify--test-event-handler)))
799 (unwind-protect 799 (unwind-protect
800 (let ((n 1000) 800 ;; In case of w32notify, the upper limit of events to handle
801 ;; seems to be 260. Reason unknown.
802 (let ((n (if (string-equal (file-notify--test-library) "w32notify")
803 250 1000))
801 source-file-list target-file-list 804 source-file-list target-file-list
802 (default-directory file-notify--test-tmpfile)) 805 (default-directory file-notify--test-tmpfile))
803 (dotimes (i n) 806 (dotimes (i n)