Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. (add-to-list 'display-buffer-alist (cons "\*Compile-Log\*.*" (cons #'display-buffer-no-window nil)))
  2.  
  3. (defadvice package-menu-execute (around do-not-show-compile-log (&rest args))
  4. (let ((display-buffer-alist (append (list (cons "\*Compile-Log\*.*" (cons #'display-buffer-no-window nil)))
  5. display-buffer-alist)))
  6. ad-do-it))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement