]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove XEmacs compat code from idlw-help.el
authorStefan Kangas <stefan@marxist.se>
Tue, 24 Nov 2020 17:03:31 +0000 (18:03 +0100)
committerStefan Kangas <stefan@marxist.se>
Tue, 24 Nov 2020 17:06:05 +0000 (18:06 +0100)
* lisp/progmodes/idlw-help.el (idlwave-do-context-help)
(idlwave-help-show-help-frame): Remove XEmacs compat code.

lisp/progmodes/idlw-help.el

index 68809ce1fc027cdfe4d40770d96639c7a5272549..b17bcc354af91ed4354a2b303b397b3d3d5b9c24 100644 (file)
@@ -365,7 +365,6 @@ It collects and prints the diagnostics messages."
        (idlwave-help-diagnostics nil))
     ;; Check for frame switching.  When the command is invoked twice
     ;; at the same position, we try to switch to the help frame
-    ;; FIXME:  Frame switching works only on XEmacs
     (if (and idlwave-experimental
             (equal last-command this-command)
             (equal idlwave-last-context-help-pos marker))
@@ -1200,16 +1199,9 @@ Useful when source code is displayed as help.  See the option
     (setq idlwave-help-frame
          (make-frame idlwave-help-frame-parameters))
     ;; Strip menubar (?) and toolbar from the Help frame.
-    (if (fboundp 'set-specifier)
-       (progn
-         ;; XEmacs
-         (let ((sval (cons idlwave-help-frame nil)))
-           ;; (set-specifier menubar-visible-p sval)
-           (set-specifier default-toolbar-visible-p sval)))
-      ;; Emacs
-      (modify-frame-parameters idlwave-help-frame
-                              '(;;(menu-bar-lines . 0)
-                                (tool-bar-lines . 0)))))
+    (modify-frame-parameters idlwave-help-frame
+                             '(;;(menu-bar-lines . 0)
+                               (tool-bar-lines . 0))))
   (select-frame idlwave-help-frame))
 
 (defun idlwave-help-get-help-buffer ()