Emacs를 위한 GDB에서 .emacs 설정파일 방법 좀 도와주세요.....
("/usr/bin/emacs22-x")
Loading subst-jis...done
Loading subst-big5...done
Loading subst-gb2312...done
Loading subst-ksc...done
Loading 00debian-vars...
No /etc/mailname. Reverting to default...
Loading 00debian-vars...done
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Loading debian-ispell...
Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...done
Loading debian-ispell...done
Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...done
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...done
An error has occurred while loading `/home/kirina/.emacs':
Symbol's function definition is void: gdb-many-windows
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the `--debug-init' option to view a complete error backtrace.
-------------------------------------------------------------------------------------
emacs 시작하면 이런 메시지 나면서 .emacs를 실행시키지 못하는거 같습니다.
.emacs파일을 이렇게 했습니다 어떻게 해야하나요...
--------------------.emacs-----------------------------------------------------------
;;gdb를 위한 파일 설정
(gdb-many-windows-t)
(add-hook 'c-mode-hook
'(lambda ()
(c-set-style "cc-mode")))
(add-hook 'c++-mode-hook
'(lambda ()
(c-set-style "cc-mode")))
(setq make-backup-files nil)
(dynamic-completion-mode)
(custom-set-variables
;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
;; Your init file should contain only one such instance.
'(case-fold-search t)
'(current-language-environment "UTF-8")
'(default-input-method "rfc1345")
'(ecb-layout-window-sizes (quote (("left8" (0.22941176470588234 . 0.2631578947368421) (0.22941176470588234 . 0.22807017543859648) (0.22941176470588234 . 0.2807017543859649) (0.22941176470588234 . 0.15789473684210525)))))
'(ecb-options-version "2.32")
'(global-font-lock-mode t nil (font-lock))
'(show-paren-mode t nil (paren))
'(transient-mark-mode t))
(custom-set-faces
;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
;; Your init file should contain only one such instance.
)
;;(set-background-color "#586088")
(set-background-color "#222222")
(gdb-many-windows t)
(set-foreground-color "white")
(set-cursor-color "SpringGreen")
(set-mouse-color "yellow")
(require 'ecb)
(setq ecb-tip-of-the-day nil)
;(add-hook 'c-mode-hook 'ecb-activate)
;; Korean letter setting
(require 'cl)
(when enable-multibyte-characters
(set-language-environment "Korean")
(setq-default file-name-coding-system 'euc-kr)
;; (setq default-korean-keyboard "3")
;; (setq input-method-verbose-flag nil
;; input-method-highlight-flag nil)
(prefer-coding-system 'euc-kr)
(set-default-coding-systems 'euc-kr)
(unless window-system
(set-terminal-coding-system 'euc-kr)
(when (boundp 'encoded-kbd-mode-map)
(define-key encoded-kbd-mode-map [27] nil)))
(set-selection-coding-system 'compound-text-with-extensions)
;; Hangul Mail setting
(setq-default sendmail-coding-system 'euc-kr))
(unless (or enable-multibyte-characters window-system)
(standard-display-european t)
(set-input-mode (car (current-input-mode))
(nth 1 (current-input-mode))
0))
gdb-many-windows 가 없는
gdb-many-windows 가 없는 함수라는 걸 보니, (gdb-many-windows t)가
(gdb-many-window-t)가 아닐까요.
------------------------------------------
emacs user
------------------------------------------
emacs user
댓글 달기