diff options
| author | Paul Eggert | 2017-03-19 12:34:03 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-03-19 12:34:03 -0700 |
| commit | 90f5282e20df79dedaa9d231a108f9a91222eca7 (patch) | |
| tree | 4b2f648d7209c93fc845c68beccd27b98a51fdac /lisp | |
| parent | c4fca5cee27e3bf399ad23bf42317bffcc80f160 (diff) | |
| parent | ec4226d81074751c105264a3a3383c48d0a05e41 (diff) | |
| download | emacs-90f5282e20df79dedaa9d231a108f9a91222eca7.tar.gz emacs-90f5282e20df79dedaa9d231a108f9a91222eca7.zip | |
Merge from origin/emacs-25
ec4226d * lisp/woman.el (woman): Fix docstring prefix arg description.
2b774fa Mention "editor" in Emacs man page header
ae60d0c Document problems with nerd-fonts
2fdb5a9 ; Details about pinning Emacs to w32 task bar
5c3105e * doc/lispref/modes.texi (Derived Modes): Make example more i...
4c51ef4 Clarify what is the "cursor"
8303c32 ; * etc/NEWS: Copyedits.
3f7493e ; Fix a typo in comment
c54cf8d Improve commentary in lisp.h
8b92f86 ; * admin/make-tarball.txt: Cross-reference admin/release-pro...
0ba9932 Disable native completion for ipython (Bug#25067)
38fc456 Fix a typo in ada-mode manual
00e75ba ; * src/coding.c (Fencode_coding_region): Fix a typo in the d...
a541c21 Clarify documentation of 'bufferpos-to-filepos' and 'filepos-...
# Conflicts:
# etc/NEWS
# etc/PROBLEMS
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/international/mule-util.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/python.el | 6 | ||||
| -rw-r--r-- | lisp/vc/ediff-wind.el | 2 | ||||
| -rw-r--r-- | lisp/woman.el | 2 |
4 files changed, 8 insertions, 6 deletions
diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index 92a658655ac..e34b01c3064 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el | |||
| @@ -342,7 +342,7 @@ QUALITY can be: | |||
| 342 | `approximate', in which case we may cut some corners to avoid | 342 | `approximate', in which case we may cut some corners to avoid |
| 343 | excessive work. | 343 | excessive work. |
| 344 | `exact', in which case we may end up re-(en/de)coding a large | 344 | `exact', in which case we may end up re-(en/de)coding a large |
| 345 | part of the file/buffer. | 345 | part of the file/buffer, this can be expensive and slow. |
| 346 | nil, in which case we may return nil rather than an approximation." | 346 | nil, in which case we may return nil rather than an approximation." |
| 347 | (unless coding-system (setq coding-system buffer-file-coding-system)) | 347 | (unless coding-system (setq coding-system buffer-file-coding-system)) |
| 348 | (let ((eol (coding-system-eol-type coding-system)) | 348 | (let ((eol (coding-system-eol-type coding-system)) |
| @@ -418,7 +418,7 @@ QUALITY can be: | |||
| 418 | `approximate', in which case we may cut some corners to avoid | 418 | `approximate', in which case we may cut some corners to avoid |
| 419 | excessive work. | 419 | excessive work. |
| 420 | `exact', in which case we may end up re-(en/de)coding a large | 420 | `exact', in which case we may end up re-(en/de)coding a large |
| 421 | part of the file/buffer. | 421 | part of the file/buffer, this can be expensive and slow. |
| 422 | nil, in which case we may return nil rather than an approximation." | 422 | nil, in which case we may return nil rather than an approximation." |
| 423 | (unless coding-system (setq coding-system buffer-file-coding-system)) | 423 | (unless coding-system (setq coding-system buffer-file-coding-system)) |
| 424 | (let* ((eol (coding-system-eol-type coding-system)) | 424 | (let* ((eol (coding-system-eol-type coding-system)) |
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index d4ed1392703..58b16794ee0 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -3276,8 +3276,10 @@ the full statement in the case of imports." | |||
| 3276 | "Completion string code must work for (i)pdb.") | 3276 | "Completion string code must work for (i)pdb.") |
| 3277 | 3277 | ||
| 3278 | (defcustom python-shell-completion-native-disabled-interpreters | 3278 | (defcustom python-shell-completion-native-disabled-interpreters |
| 3279 | ;; PyPy's readline cannot handle some escape sequences yet. | 3279 | ;; PyPy's readline cannot handle some escape sequences yet. Native |
| 3280 | (list "pypy") | 3280 | ;; completion was found to be non-functional for IPython (see |
| 3281 | ;; Bug#25067). | ||
| 3282 | (list "pypy" "ipython") | ||
| 3281 | "List of disabled interpreters. | 3283 | "List of disabled interpreters. |
| 3282 | When a match is found, native completion is disabled." | 3284 | When a match is found, native completion is disabled." |
| 3283 | :version "25.1" | 3285 | :version "25.1" |
diff --git a/lisp/vc/ediff-wind.el b/lisp/vc/ediff-wind.el index 8516c11d136..9b3d53fca76 100644 --- a/lisp/vc/ediff-wind.el +++ b/lisp/vc/ediff-wind.el | |||
| @@ -579,7 +579,7 @@ into icons, regardless of the window manager." | |||
| 579 | (if (and (window-live-p wind-A) | 579 | (if (and (window-live-p wind-A) |
| 580 | (null use-same-frame) ; implies wind-A is suitable | 580 | (null use-same-frame) ; implies wind-A is suitable |
| 581 | (null use-same-frame-for-AB)) | 581 | (null use-same-frame-for-AB)) |
| 582 | (progn ; bug A on its own | 582 | (progn ; buf A on its own |
| 583 | ;; buffer buf-A is seen in live wind-A | 583 | ;; buffer buf-A is seen in live wind-A |
| 584 | (select-window wind-A) | 584 | (select-window wind-A) |
| 585 | (delete-other-windows) | 585 | (delete-other-windows) |
diff --git a/lisp/woman.el b/lisp/woman.el index 2021fb26968..720fe66be86 100644 --- a/lisp/woman.el +++ b/lisp/woman.el | |||
| @@ -1159,7 +1159,7 @@ The major browsing mode used is essentially the standard Man mode. | |||
| 1159 | Choose the filename for the man page using completion, based on the | 1159 | Choose the filename for the man page using completion, based on the |
| 1160 | topic selected from the directories specified in `woman-manpath' and | 1160 | topic selected from the directories specified in `woman-manpath' and |
| 1161 | `woman-path'. The directory expansions and topics are cached for | 1161 | `woman-path'. The directory expansions and topics are cached for |
| 1162 | speed, but a non-nil interactive argument forces the caches to be | 1162 | speed. With a prefix argument, force the caches to be |
| 1163 | updated (e.g. to re-interpret the current directory). | 1163 | updated (e.g. to re-interpret the current directory). |
| 1164 | 1164 | ||
| 1165 | Used non-interactively, arguments are optional: if given then TOPIC | 1165 | Used non-interactively, arguments are optional: if given then TOPIC |