emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 1b2b136 3/3: cus-edit.el: Remove XEmacs compat code


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 1b2b136 3/3: cus-edit.el: Remove XEmacs compat code
Date: Sun, 19 May 2019 14:51:08 -0400 (EDT)

branch: master
commit 1b2b136a17d222892af9c25559e1b4c41de7831c
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    cus-edit.el: Remove XEmacs compat code
    
    * lisp/cus-edit.el (custom-browse-insert-prefix): Remove XEmacs
    compat code and make obsolete.
    (custom-group-value-create): Use `insert' directly.
    
    * lisp/emacs-lisp/elint.el (elint-check-conditional-form): Don't
    refer to function that doesn't have an if any more.
---
 lisp/cus-edit.el         | 27 +++++++--------------------
 lisp/emacs-lisp/elint.el |  2 +-
 2 files changed, 8 insertions(+), 21 deletions(-)

diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index f87b6b6..6d47e60 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1827,20 +1827,9 @@ item in another window.\n\n"))
                              (" `-" "bottom")))
 
 (defun custom-browse-insert-prefix (prefix)
-  "Insert PREFIX.  On XEmacs convert it to line graphics."
-  ;; Fixme: do graphics.
-  (if nil ; (featurep 'xemacs)
-      (progn
-       (insert "*")
-       (while (not (string-equal prefix ""))
-         (let ((entry (substring prefix 0 3)))
-           (setq prefix (substring prefix 3))
-           (let ((overlay (make-overlay (1- (point)) (point) nil t nil))
-                 (name (nth 1 (assoc entry custom-browse-alist))))
-             (overlay-put overlay 'end-glyph (widget-glyph-find name entry))
-             (overlay-put overlay 'start-open t)
-             (overlay-put overlay 'end-open t)))))
-    (insert prefix)))
+  "Insert PREFIX."
+  (declare (obsolete insert "27.1"))
+  (insert prefix))
 
 ;;; Modification of Basic Widgets.
 ;;
@@ -4043,7 +4032,7 @@ If GROUPS-ONLY is non-nil, return only those members that 
are groups."
     (cond ((and (eq custom-buffer-style 'tree)
                (eq state 'hidden)
                (or members (custom-unloaded-widget-p widget)))
-          (custom-browse-insert-prefix prefix)
+          (insert prefix)
           (push (widget-create-child-and-convert
                  widget 'custom-browse-visibility
                  :tag "+")
@@ -4056,19 +4045,17 @@ If GROUPS-ONLY is non-nil, return only those members 
that are groups."
           (widget-put widget :buttons buttons))
          ((and (eq custom-buffer-style 'tree)
                (zerop (length members)))
-          (custom-browse-insert-prefix prefix)
-          (insert "[ ]-- ")
+          (insert prefix "[ ]-- ")
           (push (widget-create-child-and-convert
                  widget 'custom-browse-group-tag)
                 buttons)
           (insert " " tag "\n")
           (widget-put widget :buttons buttons))
          ((eq custom-buffer-style 'tree)
-          (custom-browse-insert-prefix prefix)
+          (insert prefix)
           (if (zerop (length members))
               (progn
-                (custom-browse-insert-prefix prefix)
-                (insert "[ ]-- ")
+                (insert prefix "[ ]-- ")
                 ;; (widget-glyph-insert nil "[ ]" "empty")
                 ;; (widget-glyph-insert nil "-- " "horizontal")
                 (push (widget-create-child-and-convert
diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el
index 3f49b51..4a53972 100644
--- a/lisp/emacs-lisp/elint.el
+++ b/lisp/emacs-lisp/elint.el
@@ -937,7 +937,7 @@ Does basic handling of `featurep' tests."
          ((and (memq func '(unless or))
                (equal test '(featurep (quote emacs)))))
          ((and (eq func 'if)
-               (or (null test)       ; eg custom-browse-insert-prefix
+               (or (null test)
                    (member test '((featurep (quote xemacs))
                                   (not (featurep (quote emacs)))))
                    (and (eq (car-safe test) 'and)



reply via email to

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