aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2021-03-20 01:16:26 +0100
committerStefan Kangas2021-03-20 01:26:21 +0100
commit0eeb865aae3373343c18b7674fde91f280edafef (patch)
tree77357b89a099ed9215fed815da820cef56548d48
parent7607d1c4e854cf55701aef3446092d3f510697ce (diff)
downloademacs-0eeb865aae3373343c18b7674fde91f280edafef.tar.gz
emacs-0eeb865aae3373343c18b7674fde91f280edafef.zip
Assume something more recent than X11R6
* lisp/bindings.el: * lisp/menu-bar.el: * lisp/printing.el: * lisp/thumbs.el (thumbs-conversion-program): Assume we have something more recent than X11R6.
-rw-r--r--lisp/bindings.el2
-rw-r--r--lisp/menu-bar.el2
-rw-r--r--lisp/printing.el4
-rw-r--r--lisp/thumbs.el5
4 files changed, 7 insertions, 6 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index a502373997a..6eac528eb61 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -1211,7 +1211,7 @@ if `inhibit-field-text-motion' is non-nil."
1211;; (define-key global-map [kp-9] 'function-key-error) 1211;; (define-key global-map [kp-9] 'function-key-error)
1212;; (define-key global-map [kp-equal] 'function-key-error) 1212;; (define-key global-map [kp-equal] 'function-key-error)
1213 1213
1214;; X11R6 distinguishes these keys from the non-kp keys. 1214;; X11 distinguishes these keys from the non-kp keys.
1215;; Make them behave like the non-kp keys unless otherwise bound. 1215;; Make them behave like the non-kp keys unless otherwise bound.
1216;; FIXME: rather than list such mappings for every modifier-combination, 1216;; FIXME: rather than list such mappings for every modifier-combination,
1217;; we should come up with a way to do it generically, something like 1217;; we should come up with a way to do it generically, something like
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 133df65cbcb..e6cce593430 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -604,7 +604,7 @@ Do the same for the keys of the same name."
604 (define-key global-map [f20] 'clipboard-kill-region) 604 (define-key global-map [f20] 'clipboard-kill-region)
605 (define-key global-map [f16] 'clipboard-kill-ring-save) 605 (define-key global-map [f16] 'clipboard-kill-ring-save)
606 (define-key global-map [f18] 'clipboard-yank) 606 (define-key global-map [f18] 'clipboard-yank)
607 ;; X11R6 versions: 607 ;; X11 versions:
608 (define-key global-map [cut] 'clipboard-kill-region) 608 (define-key global-map [cut] 'clipboard-kill-region)
609 (define-key global-map [copy] 'clipboard-kill-ring-save) 609 (define-key global-map [copy] 'clipboard-kill-ring-save)
610 (define-key global-map [paste] 'clipboard-yank)) 610 (define-key global-map [paste] 'clipboard-yank))
diff --git a/lisp/printing.el b/lisp/printing.el
index f6b9494e177..f5d3c82ae95 100644
--- a/lisp/printing.el
+++ b/lisp/printing.el
@@ -103,14 +103,14 @@ Please send all bug fixes and enhancements to
103;; For example, after previewing a PostScript file, *Printing Command Output* 103;; For example, after previewing a PostScript file, *Printing Command Output*
104;; will have the following entry: 104;; will have the following entry:
105;; 105;;
106;; /usr/X11R6/bin/gv ("/home/user/example/file.ps") 106;; /usr/bin/gv ("/home/user/example/file.ps")
107;; Exit status: 0 107;; Exit status: 0
108;; 108;;
109;; In the example above, the previewing was successful. If during previewing, 109;; In the example above, the previewing was successful. If during previewing,
110;; you quit gv execution (by typing C-g during Emacs session), the log entry 110;; you quit gv execution (by typing C-g during Emacs session), the log entry
111;; would be: 111;; would be:
112;; 112;;
113;; /usr/X11R6/bin/gv ("/home/user/example/file.ps") 113;; /usr/bin/gv ("/home/user/example/file.ps")
114;; Exit status: Quit 114;; Exit status: Quit
115;; 115;;
116;; So, if something goes wrong, a good place to take a look is the buffer 116;; So, if something goes wrong, a good place to take a look is the buffer
diff --git a/lisp/thumbs.el b/lisp/thumbs.el
index c6a9a67b3f3..8d79ceda5b8 100644
--- a/lisp/thumbs.el
+++ b/lisp/thumbs.el
@@ -95,10 +95,11 @@ When it reaches that size (in bytes), a warning is sent."
95 (if (eq system-type 'windows-nt) 95 (if (eq system-type 'windows-nt)
96 "convert.exe" 96 "convert.exe"
97 (or (executable-find "convert") 97 (or (executable-find "convert")
98 "/usr/X11R6/bin/convert")) 98 "/usr/bin/convert"))
99 "Name of conversion program for thumbnails generation. 99 "Name of conversion program for thumbnails generation.
100It must be \"convert\"." 100It must be \"convert\"."
101 :type 'string) 101 :type 'string
102 :version "28.1")
102 103
103(defcustom thumbs-setroot-command 104(defcustom thumbs-setroot-command
104 "xloadimage -onroot -fullscreen *" 105 "xloadimage -onroot -fullscreen *"