aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2018-03-13 18:13:26 -0700
committerGlenn Morris2018-03-13 18:13:26 -0700
commite0f18aa07fb900c1bb0fe25386336fd6a73c9b0d (patch)
tree893b95bcdf8d4a0b1e105c45b1aaf1d7b5e31a32 /lisp
parentae80854e9a9f8f6733870b5b5a88467867dceb6c (diff)
parent675edecf6102a20b3482544315c654fde4b6236e (diff)
downloademacs-e0f18aa07fb900c1bb0fe25386336fd6a73c9b0d.tar.gz
emacs-e0f18aa07fb900c1bb0fe25386336fd6a73c9b0d.zip
Merge from origin/emacs-26
675edec (origin/emacs-26) Fix some allout.el aliases b2c069a * lisp/progmodes/ada-mode.el (ada-clean-buffer-before-saving)... 2f5420c Doc fixes re obsolete items 9edf82a Replace an obsolete alias in tpu-mapper a643792 Doc fixes re obsolete items 3060fb8 Minor changes in mule.texi 3e39897 Avoid assertion violation under visual-order-cursor-movement e4b73ab Stop mentioning options.el in doc 05669f0 ; * lisp/minibuffer.el (completion-cycle-threshold): Fix last... 758597f * lisp/vc/vc-dir.el (vc-dir-unmark): Fix documentation. 62f0a2b * lisp/minibuffer.el (completion-cycle-threshold): Doc fix. 761845c Fix last change in Xref documentation 5186675 More changes in the Emacs manual b1aaa72 Improve documentation of Xref Conflicts: lisp/w32-fns.el
Diffstat (limited to 'lisp')
-rw-r--r--lisp/allout.el4
-rw-r--r--lisp/hilit-chg.el4
-rw-r--r--lisp/minibuffer.el3
-rw-r--r--lisp/obsolete/tpu-mapper.el4
-rw-r--r--lisp/progmodes/ada-mode.el2
-rw-r--r--lisp/progmodes/meta-mode.el4
-rw-r--r--lisp/vc/vc-dir.el2
-rw-r--r--lisp/w32-fns.el2
8 files changed, 13 insertions, 12 deletions
diff --git a/lisp/allout.el b/lisp/allout.el
index a0456d5bd26..af71ea75ce0 100644
--- a/lisp/allout.el
+++ b/lisp/allout.el
@@ -1522,7 +1522,7 @@ the Emacs buffer state, if file variable adjustments are enabled. See
1522`allout-enable-file-variable-adjustment' for details about that.") 1522`allout-enable-file-variable-adjustment' for details about that.")
1523(make-variable-buffer-local 'allout-passphrase-verifier-string) 1523(make-variable-buffer-local 'allout-passphrase-verifier-string)
1524(make-obsolete-variable 'allout-passphrase-verifier-string 1524(make-obsolete-variable 'allout-passphrase-verifier-string
1525 'allout-passphrase-verifier-string "23.3") 1525 "it is no longer used." "23.3")
1526;;;###autoload 1526;;;###autoload
1527(put 'allout-passphrase-verifier-string 'safe-local-variable 'stringp) 1527(put 'allout-passphrase-verifier-string 'safe-local-variable 'stringp)
1528;;;_ = allout-passphrase-hint-string 1528;;;_ = allout-passphrase-hint-string
@@ -1538,7 +1538,7 @@ state, if file variable adjustments are enabled. See
1538(make-variable-buffer-local 'allout-passphrase-hint-string) 1538(make-variable-buffer-local 'allout-passphrase-hint-string)
1539(setq-default allout-passphrase-hint-string "") 1539(setq-default allout-passphrase-hint-string "")
1540(make-obsolete-variable 'allout-passphrase-hint-string 1540(make-obsolete-variable 'allout-passphrase-hint-string
1541 'allout-passphrase-hint-string "23.3") 1541 "it is no longer used." "23.3")
1542;;;###autoload 1542;;;###autoload
1543(put 'allout-passphrase-hint-string 'safe-local-variable 'stringp) 1543(put 'allout-passphrase-hint-string 'safe-local-variable 'stringp)
1544;;;_ = allout-after-save-decrypt 1544;;;_ = allout-after-save-decrypt
diff --git a/lisp/hilit-chg.el b/lisp/hilit-chg.el
index 7c5294fa17e..9d4d2d8b383 100644
--- a/lisp/hilit-chg.el
+++ b/lisp/hilit-chg.el
@@ -297,9 +297,9 @@ modes only."
297 297
298(defcustom highlight-changes-global-changes-existing-buffers nil 298(defcustom highlight-changes-global-changes-existing-buffers nil
299 "If non-nil, toggling global Highlight Changes mode affects existing buffers. 299 "If non-nil, toggling global Highlight Changes mode affects existing buffers.
300Normally, `global-highlight-changes' affects only new buffers (to be 300Normally, `global-highlight-changes-mode' affects only new buffers (to be
301created). However, if `highlight-changes-global-changes-existing-buffers' 301created). However, if `highlight-changes-global-changes-existing-buffers'
302is non-nil, then turning on `global-highlight-changes' will turn on 302is non-nil, then turning on `global-highlight-changes-mode' will turn on
303Highlight Changes mode in suitable buffers, and turning the mode off will 303Highlight Changes mode in suitable buffers, and turning the mode off will
304remove it from existing buffers." 304remove it from existing buffers."
305 :type 'boolean 305 :type 'boolean
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 9b6f043b576..3227917494e 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -987,7 +987,8 @@ Moves point to the end of the new text."
987(defcustom completion-cycle-threshold nil 987(defcustom completion-cycle-threshold nil
988 "Number of completion candidates below which cycling is used. 988 "Number of completion candidates below which cycling is used.
989Depending on this setting `completion-in-region' may use cycling, 989Depending on this setting `completion-in-region' may use cycling,
990like `minibuffer-force-complete'. 990whereby invoking a completion command several times in a row
991completes to each of the candidates in turn, in a cyclic manner.
991If nil, cycling is never used. 992If nil, cycling is never used.
992If t, cycling is always used. 993If t, cycling is always used.
993If an integer, cycling is used so long as there are not more 994If an integer, cycling is used so long as there are not more
diff --git a/lisp/obsolete/tpu-mapper.el b/lisp/obsolete/tpu-mapper.el
index 6a5a83c888b..4cc2404e4e7 100644
--- a/lisp/obsolete/tpu-mapper.el
+++ b/lisp/obsolete/tpu-mapper.el
@@ -56,7 +56,7 @@
56 (set-buffer "Keys") 56 (set-buffer "Keys")
57 (insert (format"(global-set-key %s %s)\n" tpu-key func)) 57 (insert (format"(global-set-key %s %s)\n" tpu-key func))
58 (set-buffer "Gold-Keys") 58 (set-buffer "Gold-Keys")
59 (insert (format "(define-key GOLD-map %s %s)\n" tpu-key gold-func)))) 59 (insert (format "(define-key tpu-gold-map %s %s)\n" tpu-key gold-func))))
60 (message "Press %s%s: " ident descrip) 60 (message "Press %s%s: " ident descrip)
61 (setq tpu-key-seq (read-event) 61 (setq tpu-key-seq (read-event)
62 tpu-key (format "[%s]" tpu-key-seq)) 62 tpu-key (format "[%s]" tpu-key-seq))
@@ -203,7 +203,7 @@ your local X guru can try to figure out why the key is being ignored."
203") 203")
204 (set-buffer "Directions") 204 (set-buffer "Directions")
205 205
206 (tpu-map-key "PF1" " - The GOLD key" "GOLD-map" "'keyboard-quit") 206 (tpu-map-key "PF1" " - The GOLD key" "tpu-gold-map" "'keyboard-quit")
207 (tpu-map-key "PF2" " - The Keypad Help key" "'tpu-help" "'help-for-help") 207 (tpu-map-key "PF2" " - The Keypad Help key" "'tpu-help" "'help-for-help")
208 (tpu-map-key "PF3" " - The Find/Find-Next key" "'tpu-search-again" "'tpu-search") 208 (tpu-map-key "PF3" " - The Find/Find-Next key" "'tpu-search-again" "'tpu-search")
209 (tpu-map-key "PF4" " - The Del/Undelete Line key" "'tpu-delete-current-line" "'tpu-undelete-lines") 209 (tpu-map-key "PF4" " - The Del/Undelete Line key" "'tpu-delete-current-line" "'tpu-undelete-lines")
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el
index 2d3f6e22a6c..76c9be93d03 100644
--- a/lisp/progmodes/ada-mode.el
+++ b/lisp/progmodes/ada-mode.el
@@ -231,7 +231,7 @@ It may be `downcase-word', `upcase-word', `ada-loose-case-word' or
231 "Non-nil means remove trailing spaces and untabify the buffer before saving." 231 "Non-nil means remove trailing spaces and untabify the buffer before saving."
232 :type 'boolean :group 'ada) 232 :type 'boolean :group 'ada)
233(make-obsolete-variable 'ada-clean-buffer-before-saving 233(make-obsolete-variable 'ada-clean-buffer-before-saving
234 "use the `write-file-functions' hook." 234 "it has no effect - use `write-file-functions' hook."
235 "23.2") 235 "23.2")
236 236
237 237
diff --git a/lisp/progmodes/meta-mode.el b/lisp/progmodes/meta-mode.el
index 7d20e02d80d..e207d22ff4a 100644
--- a/lisp/progmodes/meta-mode.el
+++ b/lisp/progmodes/meta-mode.el
@@ -47,8 +47,8 @@
47;; `metafont-mode-hook' and `metapost-mode-hook' which apply to the 47;; `metafont-mode-hook' and `metapost-mode-hook' which apply to the
48;; individual modes. In addition, there are several variables and 48;; individual modes. In addition, there are several variables and
49;; regexps controlling e.g. the behavior of the indentation function, 49;; regexps controlling e.g. the behavior of the indentation function,
50;; which may be customized via `edit-options'. Please refer to the 50;; which may be customized. Please refer to the docstrings in the code
51;; docstrings in the code below for details. 51;; below for details.
52 52
53;; Availability: 53;; Availability:
54;; 54;;
diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el
index db595331bbd..18da6e33578 100644
--- a/lisp/vc/vc-dir.el
+++ b/lisp/vc/vc-dir.el
@@ -697,7 +697,7 @@ share the same state."
697(defun vc-dir-unmark () 697(defun vc-dir-unmark ()
698 "Unmark the current file or all files in the region. 698 "Unmark the current file or all files in the region.
699If the region is active, unmark all the files in the region. 699If the region is active, unmark all the files in the region.
700Otherwise mark the file on the current line and move to the next 700Otherwise unmark the file on the current line and move to the next
701line." 701line."
702 (interactive) 702 (interactive)
703 (vc-dir-mark-unmark 'vc-dir-unmark-file)) 703 (vc-dir-mark-unmark 'vc-dir-unmark-file))
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el
index b400c8d4a6f..825420c4261 100644
--- a/lisp/w32-fns.el
+++ b/lisp/w32-fns.el
@@ -256,7 +256,7 @@ bit output with no translation."
256 256
257(when (boundp 'w32-charset-info-alist) 257(when (boundp 'w32-charset-info-alist)
258 ;; The last charset we add becomes the "preferred" charset for the return 258 ;; The last charset we add becomes the "preferred" charset for the return
259 ;; value from w32-select-font etc, so list the most important charsets last. 259 ;; value from x-select-font etc, so list the most important charsets last.
260 (w32-add-charset-info "iso8859-14" 'w32-charset-ansi 28604) 260 (w32-add-charset-info "iso8859-14" 'w32-charset-ansi 28604)
261 (w32-add-charset-info "iso8859-15" 'w32-charset-ansi 28605) 261 (w32-add-charset-info "iso8859-15" 'w32-charset-ansi 28605)
262 ;; The following two are included for pattern matching. 262 ;; The following two are included for pattern matching.