]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some XEmacs compat code from ediff-wind.el
authorStefan Kangas <stefan@marxist.se>
Fri, 20 Nov 2020 15:19:14 +0000 (16:19 +0100)
committerStefan Kangas <stefan@marxist.se>
Fri, 20 Nov 2020 15:19:14 +0000 (16:19 +0100)
* lisp/vc/ediff-wind.el (ediff-window)
(ediff-compute-toolbar-width): Remove some XEmacs compat code.

lisp/vc/ediff-wind.el

index a23d72070abb28dc660e2874c7d4820d9413dc55..c68dc71884306e87fb9c7f8ab47721f6dbc0bc57 100644 (file)
 (require 'ediff-help)
 ;; end pacifier
 
-
-;; be careful with ediff-tbar
-(eval-and-compile
-  (if (featurep 'xemacs)
-      (require 'ediff-tbar)
-    (defun ediff-compute-toolbar-width () 0)))
-
 (defgroup ediff-window nil
   "Ediff window manipulation."
   :prefix "ediff-"
@@ -961,8 +954,7 @@ create a new splittable frame if none is found."
     ;; 1 more line for the mode line
     (setq lines (1+ (count-lines (point-min) (point-max)))
          fheight lines
-         fwidth (max (+ (ediff-help-message-line-length) 2)
-                     (ediff-compute-toolbar-width))
+          fwidth (max (+ (ediff-help-message-line-length) 2) 0)
          adjusted-parameters
          (list
           ;; possibly change surrogate minibuffer
@@ -1291,6 +1283,9 @@ It assumes that it is called from within the control buffer."
                             (ediff-multiframe-setup-p)
                             ediff-wide-display-p)))))))
 
+(defun ediff-compute-toolbar-width ()
+  (declare (obsolete nil "28.1"))
+  0)
 
 (provide 'ediff-wind)
 ;;; ediff-wind.el ends here