Initial Revision
[ohcount] / test / src_dir / el1.el
1 (if (string-equal "21" (substring (emacs-version) 10 12))
2         (progn
3                 (blink-cursor-mode 0)
4                 ;; Insert newline when you press `C-n' (next-line)
5                 ;; at the end of the buffer
6
7                 (setq next-line-add-newlines t)
8                 ;; Turn on image viewing
9                 (auto-image-file-mode t)
10                 ;; Turn on menu bar (this bar has text)
11                 ;; (Use numeric argument to turn on)
12                 (menu-bar-mode 1)
13                 ;; Turn off tool bar (this bar has icons)
14                 ;; (Use numeric argument to turn on)
15                 (tool-bar-mode nil)
16                 ;; Turn off tooltip mode for tool bar
17                 ;; (This mode causes icon explanations to pop up)
18                 ;; (Use numeric argument to turn on)
19                 (tooltip-mode nil)
20                 ;; If tooltips turned on, make tips appear promptly
21                 (setq tooltip-delay 0.1)  ; default is one second
22                 ))