all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* frame-title-format issue of emacs23.3/emacs24.0.95.1 on Fedora16/17
@ 2012-05-26 14:05 毛礼杰
  2012-05-26 18:19 ` Eli Zaretskii
  0 siblings, 1 reply; 3+ messages in thread
From: 毛礼杰 @ 2012-05-26 14:05 UTC (permalink / raw
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 1036 bytes --]

Hi, all

It may be a bug ?

I comment all configures line execept one line

cat ~/.emacs
(setq frame-title-format '("%m @ "(buffer-file-name "%f" (dired-directory
dired-directory "%b"))))

I just want to set the frame-title-format to %f for my emacs24.0.95

But it don't work,  i can't see the %f format on the title

After emacs start, i use C-h v frame-title-format
it shows:
frame-title-format is a variable defined in `C source code'.
Its value is "%b - emacs@host"

every time only after M-x eval-buffer , it could show right result:

C-h v frame-title-format
it shows:
frame-title-format is a variable defined in `C source code'.
Its value is ("%m @ "
 (buffer-file-name "%f"
           (dired-directory dired-directory "%b")))

This issue may be OS related, i use the same .emacs file
i get right result on Emacs23.4 with CentOS5.8 from my work office PC
workstation
this issue is from my laptop with Fedora17, Emacs23.3 on Fedora16 with the
same problem

THX all

-- 
毛礼杰 <Mao Lijie>

[-- Attachment #2: Type: text/html, Size: 1638 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: frame-title-format issue of emacs23.3/emacs24.0.95.1 on Fedora16/17
  2012-05-26 14:05 frame-title-format issue of emacs23.3/emacs24.0.95.1 on Fedora16/17 毛礼杰
@ 2012-05-26 18:19 ` Eli Zaretskii
  2012-05-27  6:30   ` 毛礼杰
  0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2012-05-26 18:19 UTC (permalink / raw
  To: help-gnu-emacs

> Date: Sat, 26 May 2012 22:05:39 +0800
> From: 毛礼杰 <maolijie@gmail.com>
> 
> It may be a bug ?

I don't think so.

> cat ~/.emacs
> (setq frame-title-format '("%m @ "(buffer-file-name "%f" (dired-directory
> dired-directory "%b"))))
> 
> I just want to set the frame-title-format to %f for my emacs24.0.95
> 
> But it don't work,  i can't see the %f format on the title
> 
> After emacs start, i use C-h v frame-title-format
> it shows:
> frame-title-format is a variable defined in `C source code'.
> Its value is "%b - emacs@host"

You omitted the important part:

  It is used only on frames for which no explicit name has been set
  (see `modify-frame-parameters').

And if I evaluate

   (frame-parameters (selected-frame))

I see there (explicit-name).  So I think your customization is ignored
by design.  I think you should set the `title' frame parameter instead.




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: frame-title-format issue of emacs23.3/emacs24.0.95.1 on Fedora16/17
  2012-05-26 18:19 ` Eli Zaretskii
@ 2012-05-27  6:30   ` 毛礼杰
  0 siblings, 0 replies; 3+ messages in thread
From: 毛礼杰 @ 2012-05-27  6:30 UTC (permalink / raw
  To: Eli Zaretskii; +Cc: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 3085 bytes --]

Hi, Eli

1: 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



On Sun, May 27, 2012 at 2:19 AM, Eli Zaretskii <eliz@gnu.org> wrote:

> > Date: Sat, 26 May 2012 22:05:39 +0800
> > From: 毛礼杰 <maolijie@gmail.com>
> >
> > It may be a bug ?
>
> I don't think so.
>
> > cat ~/.emacs
> > (setq frame-title-format '("%m @ "(buffer-file-name "%f" (dired-directory
> > dired-directory "%b"))))
> >
> > I just want to set the frame-title-format to %f for my emacs24.0.95
> >
> > But it don't work,  i can't see the %f format on the title
> >
> > After emacs start, i use C-h v frame-title-format
> > it shows:
> > frame-title-format is a variable defined in `C source code'.
> > Its value is "%b - emacs@host"
>
> You omitted the important part:
>
>  It is used only on frames for which no explicit name has been set
>  (see `modify-frame-parameters').
>
> And if I evaluate
>
>   (frame-parameters (selected-frame))
>
> I see there (explicit-name).  So I think your customization is ignored
> by design.  I think you should set the `title' frame parameter instead.
>
>
>


-- 
毛礼杰 <Mao Lijie>

[-- Attachment #2: Type: text/html, Size: 4249 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-05-27  6:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-26 14:05 frame-title-format issue of emacs23.3/emacs24.0.95.1 on Fedora16/17 毛礼杰
2012-05-26 18:19 ` Eli Zaretskii
2012-05-27  6:30   ` 毛礼杰

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.