Hi,
Eli1: first step
my .emacs only one line
cat ~/.emacs
(warn "my frame-parameters ----: %s" (frame-parameters (selected-frame)))
it ouput:
Warning (emacs): my frame-parameters ----: ((parent-id . 23169188)
(explicit-name) (display . :0.0) (visibility . t) (icon-name) (outer-window-id . 67109031) (window-id . 67109060) (top . 0) (left . 50) (buried-buffer-list) (buffer-list *scratch*) (unsplittable) (minibuffer . #<window 4 on *Minibuf-0*>) (modeline . t) (width . 80) (height . 35)
(name . emacs@host) (environment) (sticky) (cursor-color . black) (background-mode . light) (display-type . color) (horizontal-scroll-bars . t) (window-system . x) (alpha) (scroll-bar-width . 16) (cursor-type . box) (auto-lower) (auto-raise) (icon-type . t) (tool-bar-position . top) (fullscreen) (wait-for-wm . t) (title) (buffer-predicate) (tool-bar-lines . 1) (menu-bar-lines . 1) (scroll-bar-background . grey75) (scroll-bar-foreground) (right-fringe . 9) (left-fringe . 9) (line-spacing) (screen-gamma) (border-color . black) (mouse-color . black) (background-color . white) (foreground-color . black) (vertical-scroll-bars . right) (internal-border-width . 0) (border-width . 0) (font-parameter . Monospace 11) (font . -unknown-DejaVu Sans Mono-normal-normal-normal-*-15-*-*-*-m-0-iso10646-1) (font-backend xft x))
there were: (explicit-name) (name . emacs@host)
2: then i comment the line in .emacs of first step.
now it has 2 line
cat ~/.emacs
(setq frame-title-format '("%m @ "("%f" ("%b"))))
(warn (warn))
<- this will output: Warning (initialization): An error occurred while loading /home/sand/.emacs , but in this instance
i can get the right result on title like : C/l @ /home/sand/test.c,
if i comment this line, no warning message , but its result will be like: test.c - emacs@host
3: other
I want to change explicit-name use modify-frame-parameter
(modify-frame-parameter nil '((
explicit-name . nil)))
but it doesn't work.
Thank you all the same
--
毛礼杰 <Mao Lijie>