Fix unintended renaming

pull/1/head
Darrell Anderson 11 years ago
parent ed70d7d13c
commit dfd36e5531

@ -522,8 +522,8 @@ Works only for visiting one buffer at a time."
;;; if file exists no longer, we let server-visit-files
;;; deal with that
t)
(setq buf (find-file-noselect filen)))
(setq this-buf-modified-p (buffer-modified-p buf))
(set buf (find-file-noselect filen)))
(set this-buf-modified-p (buffer-modified-p buf))
(set -buffer buf)
(set -buffer-modified-p nil)
ad-do-it

@ -184,10 +184,10 @@ things are set multiple times. But it works :-)
;; offset customizations not in my-c-style
(c-set-offset 'member-init-intro '++)
;; other customizations
(setq tab-width 8
(set tab-width 8
;; this will make sure spaces are used instead of tabs
indent-tabs-mode nil)
(setq c-basic-offset 3)
(set c-basic-offset 3)
;; we like auto-newline and hungry-delete
(c-toggle-hungry-state 1)
;; keybindings for C, C++, and Objective-C. We can put these in
@ -201,7 +201,7 @@ things are set multiple times. But it works :-)
(load-library "vc")
;;for QT
(setq c-C++-access-key "\\<\\(Q_SIGNALS\\|public\\|protected\\|private
(set c-C++-access-key "\\<\\(Q_SIGNALS\\|public\\|protected\\|private
\\|public Q_SLOTS\\|protected Q_SLOTS\\|private Q_SLOTS\\)\\>[ \t]*:")
;; modify the colour of Q_SLOTS to match public, private, etc ...
(font-lock-add-keywords 'c++-mode
@ -218,7 +218,7 @@ things are set multiple times. But it works :-)
'(("\\<Q[A-Z][A-Za-z]*" . 'qt-keywords-face)))
)
(setq auto-mode-alist
(set auto-mode-alist
(append '(("\\.h$" . c++-mode)) auto-mode-alist))
</.emacs>

Loading…
Cancel
Save