diff options
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 |