diff options
| author | Paul Eggert | 2016-02-09 14:23:10 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-02-09 14:23:10 -0800 |
| commit | 8986f1674c2338761a30bfe0b8ee353d0cd6778e (patch) | |
| tree | c742534a581464eba7597ac5ae55247930f2d10e | |
| parent | a9650e970d9f515b4b64bd0009d28125b4276b63 (diff) | |
| parent | 4feb9621980f9534e920a8438e5776e98eefb752 (diff) | |
| download | emacs-8986f1674c2338761a30bfe0b8ee353d0cd6778e.tar.gz emacs-8986f1674c2338761a30bfe0b8ee353d0cd6778e.zip | |
Merge from origin/emacs-25
4feb962 * lisp/comint.el (comint-prompt-read-only): Clean tabs in docstring
cc419fb Don't inloop gnus-uu-mark-thread on the last thread
51c77a2 Display non-ASCII group names better in prompts
f93d669 Default to gpg2 instead of gpg
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/comint.el | 8 | ||||
| -rw-r--r-- | lisp/epg-config.el | 7 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 8 | ||||
| -rw-r--r-- | lisp/gnus/gnus-uu.el | 4 |
5 files changed, 18 insertions, 13 deletions
| @@ -816,6 +816,10 @@ at BOL or EOL, or in whitespace there. To enable these, customize, | |||
| 816 | respectively, `show-paren-when-point-inside-paren' or | 816 | respectively, `show-paren-when-point-inside-paren' or |
| 817 | `show-paren-when-point-in-periphery'. | 817 | `show-paren-when-point-in-periphery'. |
| 818 | 818 | ||
| 819 | --- | ||
| 820 | ** If gpg2 exists on the system, it is now used as the default value | ||
| 821 | of `epg-gpg-program' (instead of gpg). | ||
| 822 | |||
| 819 | ** Lisp mode | 823 | ** Lisp mode |
| 820 | 824 | ||
| 821 | --- | 825 | --- |
diff --git a/lisp/comint.el b/lisp/comint.el index afbaef1baf2..dcd4a5ae4cf 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -185,10 +185,10 @@ the remaining prompts will be accidentally messed up. You may | |||
| 185 | wish to put something like the following in your init file: | 185 | wish to put something like the following in your init file: |
| 186 | 186 | ||
| 187 | \(add-hook \\='comint-mode-hook | 187 | \(add-hook \\='comint-mode-hook |
| 188 | (lambda () | 188 | (lambda () |
| 189 | (define-key comint-mode-map [remap kill-region] \\='comint-kill-region) | 189 | (define-key comint-mode-map [remap kill-region] \\='comint-kill-region) |
| 190 | (define-key comint-mode-map [remap kill-whole-line] | 190 | (define-key comint-mode-map [remap kill-whole-line] |
| 191 | \\='comint-kill-whole-line))) | 191 | \\='comint-kill-whole-line))) |
| 192 | 192 | ||
| 193 | If you sometimes use comint-mode on text-only terminals or with `emacs -nw', | 193 | If you sometimes use comint-mode on text-only terminals or with `emacs -nw', |
| 194 | you might wish to use another binding for `comint-kill-whole-line'." | 194 | you might wish to use another binding for `comint-kill-whole-line'." |
diff --git a/lisp/epg-config.el b/lisp/epg-config.el index e92bcd62a66..c41d97dbfac 100644 --- a/lisp/epg-config.el +++ b/lisp/epg-config.el | |||
| @@ -39,10 +39,11 @@ | |||
| 39 | :group 'data | 39 | :group 'data |
| 40 | :group 'external) | 40 | :group 'external) |
| 41 | 41 | ||
| 42 | (defcustom epg-gpg-program (cond ((executable-find "gpg") "gpg") | 42 | (defcustom epg-gpg-program (if (executable-find "gpg2") |
| 43 | ((executable-find "gpg2") "gpg2") | 43 | "gpg2" |
| 44 | (t "gpg")) | 44 | "gpg") |
| 45 | "The `gpg' executable." | 45 | "The `gpg' executable." |
| 46 | :version "25.1" | ||
| 46 | :group 'epg | 47 | :group 'epg |
| 47 | :type 'string) | 48 | :type 'string) |
| 48 | 49 | ||
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index c8f0fa31300..d675d2f6828 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -5903,13 +5903,13 @@ If SELECT-ARTICLES, only select those articles from GROUP." | |||
| 5903 | (if only-read-p | 5903 | (if only-read-p |
| 5904 | (format | 5904 | (format |
| 5905 | "How many articles from %s (available %d, default %d): " | 5905 | "How many articles from %s (available %d, default %d): " |
| 5906 | (gnus-group-decoded-name | 5906 | (gnus-group-real-name |
| 5907 | (gnus-group-real-name gnus-newsgroup-name)) | 5907 | (gnus-group-decoded-name gnus-newsgroup-name)) |
| 5908 | number default) | 5908 | number default) |
| 5909 | (format | 5909 | (format |
| 5910 | "How many articles from %s (%d default): " | 5910 | "How many articles from %s (%d default): " |
| 5911 | (gnus-group-decoded-name | 5911 | (gnus-group-real-name |
| 5912 | (gnus-group-real-name gnus-newsgroup-name)) | 5912 | (gnus-group-decoded-name gnus-newsgroup-name)) |
| 5913 | default)) | 5913 | default)) |
| 5914 | nil | 5914 | nil |
| 5915 | nil | 5915 | nil |
diff --git a/lisp/gnus/gnus-uu.el b/lisp/gnus/gnus-uu.el index 83f817fd8e9..416567ed285 100644 --- a/lisp/gnus/gnus-uu.el +++ b/lisp/gnus/gnus-uu.el | |||
| @@ -641,9 +641,9 @@ When called interactively, prompt for REGEXP." | |||
| 641 | (interactive) | 641 | (interactive) |
| 642 | (gnus-save-hidden-threads | 642 | (gnus-save-hidden-threads |
| 643 | (let ((level (gnus-summary-thread-level))) | 643 | (let ((level (gnus-summary-thread-level))) |
| 644 | (while (and (gnus-summary-set-process-mark | 644 | (while (and (gnus-summary-set-process-mark (gnus-summary-article-number)) |
| 645 | (gnus-summary-article-number)) | ||
| 646 | (zerop (forward-line 1)) | 645 | (zerop (forward-line 1)) |
| 646 | (not (eobp)) | ||
| 647 | (> (gnus-summary-thread-level) level))))) | 647 | (> (gnus-summary-thread-level) level))))) |
| 648 | (gnus-summary-position-point)) | 648 | (gnus-summary-position-point)) |
| 649 | 649 | ||