diff options
| author | Glenn Morris | 2021-02-03 08:11:08 -0800 |
|---|---|---|
| committer | Glenn Morris | 2021-02-03 08:11:08 -0800 |
| commit | bd5b4b35bc85b19f152e89e3945071ffc48c454d (patch) | |
| tree | c4bb88a4c54f568b4289269ba91614a8adfd0264 | |
| parent | 1ef8d5e0da1060f38bbcc9d840a4bb256a18ed99 (diff) | |
| parent | 7355209f53e1c7f383a1df8b5e294ec9f43ab82e (diff) | |
| download | emacs-bd5b4b35bc85b19f152e89e3945071ffc48c454d.tar.gz emacs-bd5b4b35bc85b19f152e89e3945071ffc48c454d.zip | |
Merge from origin/emacs-27
7355209f53 (origin/emacs-27) * lisp/window.el (recenter-top-bottom): ...
dc78f8a4ea (emacs-27) url-http.el: Special-case NTLM authentication
85b0137858 * lisp/isearch.el (isearch-lazy-highlight): Fix defcustom ...
cbeda21083 Sync latest SKK-JISYO.L
| -rw-r--r-- | leim/SKK-DIC/SKK-JISYO.L | 4 | ||||
| -rw-r--r-- | lisp/isearch.el | 3 | ||||
| -rw-r--r-- | lisp/url/url-http.el | 6 | ||||
| -rw-r--r-- | lisp/window.el | 17 |
4 files changed, 18 insertions, 12 deletions
diff --git a/leim/SKK-DIC/SKK-JISYO.L b/leim/SKK-DIC/SKK-JISYO.L index 9098868caea..78d6e08027e 100644 --- a/leim/SKK-DIC/SKK-JISYO.L +++ b/leim/SKK-DIC/SKK-JISYO.L | |||
| @@ -38109,8 +38109,8 @@ sari /サリー/サリ/ | |||
| 38109 | sarin /サリン/ | 38109 | sarin /サリン/ |
| 38110 | sarod /サロード/サロッド/ | 38110 | sarod /サロード/サロッド/ |
| 38111 | sars /severe acute respiratory syndrome/重症急性呼吸器症候群/ | 38111 | sars /severe acute respiratory syndrome/重症急性呼吸器症候群/ |
| 38112 | sars-cov /severe acute respiratory syndrome coronavirus/SARSコロナウイルス | 38112 | sars-cov /severe acute respiratory syndrome coronavirus/SARSコロナウイルス/ |
| 38113 | sars-cov-2 /severe acute respiratory syndrome coronavirus 2/2019新型コロナウイルス | 38113 | sars-cov-2 /severe acute respiratory syndrome coronavirus 2/2019新型コロナウイルス/ |
| 38114 | sartre /サルトル/ | 38114 | sartre /サルトル/ |
| 38115 | saruman /サルマン/ | 38115 | saruman /サルマン/ |
| 38116 | sasa /ササ/ | 38116 | sasa /ササ/ |
diff --git a/lisp/isearch.el b/lisp/isearch.el index 82d64c5766b..b58ca8a6f70 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -320,7 +320,8 @@ matching the current search string is highlighted lazily | |||
| 320 | When multiple windows display the current buffer, the | 320 | When multiple windows display the current buffer, the |
| 321 | highlighting is displayed only on the selected window, unless | 321 | highlighting is displayed only on the selected window, unless |
| 322 | this variable is set to the symbol `all-windows'." | 322 | this variable is set to the symbol `all-windows'." |
| 323 | :type '(choice boolean | 323 | :type '(choice (const :tag "Off" nil) |
| 324 | (const :tag "On, and applied to current window" t) | ||
| 324 | (const :tag "On, and applied to all windows" all-windows)) | 325 | (const :tag "On, and applied to all windows" all-windows)) |
| 325 | :group 'lazy-highlight | 326 | :group 'lazy-highlight |
| 326 | :group 'isearch) | 327 | :group 'isearch) |
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 61e07a0d9ca..8cebd4e79f6 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el | |||
| @@ -461,8 +461,10 @@ Return the number of characters removed." | |||
| 461 | ;; headers, then this means that we've already tried sending | 461 | ;; headers, then this means that we've already tried sending |
| 462 | ;; credentials to the server, and they were wrong, so just give | 462 | ;; credentials to the server, and they were wrong, so just give |
| 463 | ;; up. | 463 | ;; up. |
| 464 | (when (assoc "Authorization" url-http-extra-headers) | 464 | (let ((authorization (assoc "Authorization" url-http-extra-headers))) |
| 465 | (error "Wrong authorization used for %s" url)) | 465 | (when (and authorization |
| 466 | (not (string-match "^NTLM " (cdr authorization)))) | ||
| 467 | (error "Wrong authorization used for %s" url))) | ||
| 466 | 468 | ||
| 467 | ;; find strongest supported auth | 469 | ;; find strongest supported auth |
| 468 | (dolist (this-auth auths) | 470 | (dolist (this-auth auths) |
diff --git a/lisp/window.el b/lisp/window.el index 8905d4a826e..92ed6ee0921 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -9733,13 +9733,16 @@ cycling order is middle -> top -> bottom." | |||
| 9733 | :group 'windows) | 9733 | :group 'windows) |
| 9734 | 9734 | ||
| 9735 | (defun recenter-top-bottom (&optional arg) | 9735 | (defun recenter-top-bottom (&optional arg) |
| 9736 | "Move current buffer line to the specified window line. | 9736 | "Scroll the window so that current line is in the middle of the window. |
| 9737 | With no prefix argument, successive calls place point according | 9737 | Successive invocations scroll the window in a cyclical order to put |
| 9738 | to the cycling order defined by `recenter-positions'. | 9738 | the current line at certain places within the window, as determined by |
| 9739 | 9739 | `recenter-positions'. By default, the second invocation puts the | |
| 9740 | A prefix argument is handled like `recenter': | 9740 | current line at the top-most window line, the third invocation puts it |
| 9741 | With numeric prefix ARG, move current line to window-line ARG. | 9741 | on the bottom-most window line, and then the order is reused in a |
| 9742 | With plain `C-u', move current line to window center." | 9742 | cyclical manner. |
| 9743 | |||
| 9744 | With numeric prefix ARG, move current line ARG lines below the window top. | ||
| 9745 | With plain \\[universal-argument], move current line to window center." | ||
| 9743 | (interactive "P") | 9746 | (interactive "P") |
| 9744 | (cond | 9747 | (cond |
| 9745 | (arg (recenter arg t)) ; Always respect ARG. | 9748 | (arg (recenter arg t)) ; Always respect ARG. |