emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 0eeb865 2/2: Assume something more recent than X11R6


From: Stefan Kangas
Subject: master 0eeb865 2/2: Assume something more recent than X11R6
Date: Fri, 19 Mar 2021 20:27:10 -0400 (EDT)

branch: master
commit 0eeb865aae3373343c18b7674fde91f280edafef
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    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.
---
 lisp/bindings.el | 2 +-
 lisp/menu-bar.el | 2 +-
 lisp/printing.el | 4 ++--
 lisp/thumbs.el   | 5 +++--
 4 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/lisp/bindings.el b/lisp/bindings.el
index a502373..6eac528 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -1211,7 +1211,7 @@ if `inhibit-field-text-motion' is non-nil."
 ;; (define-key global-map [kp-9]               'function-key-error)
 ;; (define-key global-map [kp-equal]   'function-key-error)
 
-;; X11R6 distinguishes these keys from the non-kp keys.
+;; X11 distinguishes these keys from the non-kp keys.
 ;; Make them behave like the non-kp keys unless otherwise bound.
 ;; FIXME: rather than list such mappings for every modifier-combination,
 ;;   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 133df65..e6cce59 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."
   (define-key global-map [f20] 'clipboard-kill-region)
   (define-key global-map [f16] 'clipboard-kill-ring-save)
   (define-key global-map [f18] 'clipboard-yank)
-  ;; X11R6 versions:
+  ;; X11 versions:
   (define-key global-map [cut] 'clipboard-kill-region)
   (define-key global-map [copy] 'clipboard-kill-ring-save)
   (define-key global-map [paste] 'clipboard-yank))
diff --git a/lisp/printing.el b/lisp/printing.el
index f6b9494..f5d3c82 100644
--- a/lisp/printing.el
+++ b/lisp/printing.el
@@ -103,14 +103,14 @@ Please send all bug fixes and enhancements to
 ;; For example, after previewing a PostScript file, *Printing Command Output*
 ;; will have the following entry:
 ;;
-;;    /usr/X11R6/bin/gv ("/home/user/example/file.ps")
+;;    /usr/bin/gv ("/home/user/example/file.ps")
 ;;    Exit status: 0
 ;;
 ;; In the example above, the previewing was successful.  If during previewing,
 ;; you quit gv execution (by typing C-g during Emacs session), the log entry
 ;; would be:
 ;;
-;;    /usr/X11R6/bin/gv ("/home/user/example/file.ps")
+;;    /usr/bin/gv ("/home/user/example/file.ps")
 ;;    Exit status: Quit
 ;;
 ;; 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 c6a9a67..8d79ced 100644
--- a/lisp/thumbs.el
+++ b/lisp/thumbs.el
@@ -95,10 +95,11 @@ When it reaches that size (in bytes), a warning is sent."
   (if (eq system-type 'windows-nt)
       "convert.exe"
     (or (executable-find "convert")
-       "/usr/X11R6/bin/convert"))
+        "/usr/bin/convert"))
   "Name of conversion program for thumbnails generation.
 It must be \"convert\"."
-  :type 'string)
+  :type 'string
+  :version "28.1")
 
 (defcustom thumbs-setroot-command
   "xloadimage -onroot -fullscreen *"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]