dot/emacs, dot/xinitrc: Chicanery for Emacs 26 frame-width disaster.
[profile] / dot / emacs
index 79d7438..4f1fb58 100644 (file)
--- a/dot/emacs
+++ b/dot/emacs
 ;; Default frame size.
 
 (setq frame-background-mode (if mdw-black-background 'dark 'light)
+      frame-inhibit-implied-resize t
       default-frame-alist
       `((width . ,(+ mdw-column-width
-                    (if (>= emacs-major-version 21) 0 1)))
+                    (cond ((<= emacs-major-version 20) 1)
+                          ((= emacs-major-version 26) 3)
+                          (t 0))))
        (height . 33)
        (vertical-scroll-bars . right)
        (cursor-type . bar)
       (require 'ido-completing-read+)
       (unless (fboundp 'ido-ubiquitous-mode) (require 'ido-ubiquitous))
       (ido-ubiquitous-mode 1)
-      (setq ido-cr+-max-items nil
-           ido-ubiquitous-command-overrides
-           (append ido-ubiquitous-command-overrides
-                   `((enable-old regexp ,(concat "\\`"
-                                                 "gtags-find-"
-                                                 "\\("    "tag"
-                                                       "\\|file"
-                                                       "\\|rtag"
-                                                       "\\|symbol"
-                                                 "\\)"
-                                                 "\\(" "\\|-other-window"
-                                                 "\\)"
-                                                 "\\'")))))
+      (setq ido-cr+-max-items nil)
+      (let ((excludes `(,(concat "\\`"
+                                "gtags-find-"
+                                "\\("    "tag"
+                                      "\\|file"
+                                      "\\|rtag"
+                                      "\\|symbol"
+                                "\\)"
+                                "\\("  "\\|-other-window"
+                                "\\)"
+                                "\\'"))))
+       (if (boundp 'ido-ubiquitous-command-overrides)
+           (setq ido-ubiquitous-command-overrides
+                 (append ido-ubiquitous-command-overrides
+                         (mapcar (lambda (exclude)
+                                   (if (symbolp exclude)
+                                       `(enable-old exact
+                                                    ,(symbol-name exclude))
+                                     `(enable-old regexp ,exclude)))
+                                 excludes)))
+         (setq ido-cr+-function-blacklist
+               (append ido-cr+-function-blacklist excludes))))
       (setq magit-completing-read-function 'magit-ido-completing-read)
       (require 'smex) (smex-initialize) (global-set-key [?\M-x] 'smex))