Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
;;; blank-init.el --- blank-mode init file ;; Copyright (C) 2000 YAMASHITA Junji ;; Author: YAMASHITA Junji ;; Created: 22 Feb 2000 ;; Keywords: init, wp ;; Version: $Id: blank-init.el,v 1.3 2001/11/02 15:19:42 ysjj Exp $ ;;; Commentary: ;;; Code: (setq blank-newline-face 'my-newline-face) (setq blank-space-face 'my-space-face) (setq blank-tab-face 'my-tab-face) ;; Remove `blank-mode' from minor-mode-alist to prevent from display ;; the minor mode name("Blank") in the mode line. (setq minor-mode-alist (delq (assq 'blank-mode minor-mode-alist) minor-mode-alist)) ;;; blank-init.el ends here