help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Emacs client hanging


From: HS
Subject: Emacs client hanging
Date: 5 Feb 2007 08:22:09 -0800
User-agent: G2/1.0

Hello all!
I'm having a problem with Emacsclient (this comes with EmacsW32)
It's hanging when I load the file below.
Anyone knows what could be the problem ?
I tried everything but it's like magic... the file is ok if I load it
afterwards starting Emacs!
Thanks in advance,
HS

(require 'color-occur)
(require 'color-moccur)
(require 'moccur-edit)

(require 'ido)
(ido-mode t)
(setq ido-create-new-buffer 'always)
(setq ido-ignore-buffers '("^ " "^\\*"))  ;; ignore *Messages* etc

(require 'swbuff)
(setq swbuff-exclude-buffer-regexps '("^ .*" "^\\*.*\\*"))

(require 'org)
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)
(setq org-directory "~/../orgfiles/")
(setq org-default-notes-file "~/orgfiles/notes.org")
(setq org-agenda-files (list "~/orgfiles/work.org"
                             "~/orgfiles/uni.org"
                             "~/orgfiles/home.org"))
(add-hook 'org-mode-hook 'my-org-mode)
(defun my-org-mode ()
  (define-key org-mode-map "\M-n"    'outline-next-visible-heading)
  (define-key org-mode-map "\M-p"    'outline-previous-visible-
heading)
  )
(setq org-hide-leading-stars t)

;; UTF8
(set-language-environment "UTF-8") ; prefer utf-8 for language
settings
(setq default-buffer-file-coding-system 'utf-8)
(prefer-coding-system  'utf-8)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]