* Too small fonts after Emacs-Snapshot update
@ 2008-02-24 20:18 Sven Bretfeld
2008-02-24 20:44 ` Thierry Volpiatto
[not found] ` <FB31DE45-543C-47D2-BDD2-FAD4BE6C1FED@Web.DE>
0 siblings, 2 replies; 20+ messages in thread
From: Sven Bretfeld @ 2008-02-24 20:18 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 595 bytes --]
Hi together
I updated Emacs-Snapshot on Debian Etch two days ago. Since then, all
italic and bold fonts are displayed in a tiny, almost illegible
fontsize. It happens only under X.
Additionally, since the update, Emacs starts with a rapid flickering
frame, changing its size from fullscreen to a few centimeters and back
again several times until the program is up.
Does anybody where the problem could be and how to solve it?
I'm using abobe-courier as default font. I should add that there were
also updates for X.org coming with the same update.
Thanks for help
Sven
[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-24 20:18 Too small fonts after Emacs-Snapshot update Sven Bretfeld
@ 2008-02-24 20:44 ` Thierry Volpiatto
2008-02-24 20:49 ` Sven Bretfeld
[not found] ` <mailman.7866.1203886166.18990.help-gnu-emacs@gnu.org>
[not found] ` <FB31DE45-543C-47D2-BDD2-FAD4BE6C1FED@Web.DE>
1 sibling, 2 replies; 20+ messages in thread
From: Thierry Volpiatto @ 2008-02-24 20:44 UTC (permalink / raw)
To: Sven Bretfeld; +Cc: help-gnu-emacs
Sven Bretfeld <sven.bretfeld@gmx.ch> writes:
> Hi together
>
> I updated Emacs-Snapshot on Debian Etch two days ago. Since then, all
> italic and bold fonts are displayed in a tiny, almost illegible
> fontsize. It happens only under X.
>
> Additionally, since the update, Emacs starts with a rapid flickering
> frame, changing its size from fullscreen to a few centimeters and back
> again several times until the program is up.
>
> Does anybody where the problem could be and how to solve it?
>
> I'm using abobe-courier as default font. I should add that there were
> also updates for X.org coming with the same update.
>
> Thanks for help
>
> Sven
It seem emacs start with default fonts because it don't find anymore
your adobe-courier fonts (or don't recognize ?)
which version of emacs is it?
--
A + Thierry
Pub key: http://pgp.mit.edu
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-24 20:44 ` Thierry Volpiatto
@ 2008-02-24 20:49 ` Sven Bretfeld
2008-02-24 21:10 ` Thierry Volpiatto
[not found] ` <mailman.7866.1203886166.18990.help-gnu-emacs@gnu.org>
1 sibling, 1 reply; 20+ messages in thread
From: Sven Bretfeld @ 2008-02-24 20:49 UTC (permalink / raw)
To: Thierry Volpiatto; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 324 bytes --]
Hi Thierry
Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
> It seem emacs start with default fonts because it don't find anymore
> your adobe-courier fonts (or don't recognize ?)
> which version of emacs is it?
It's 23.0.60.1.
I will try to change the default font to see if this works better.
Greetings
Sven
[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-24 20:49 ` Sven Bretfeld
@ 2008-02-24 21:10 ` Thierry Volpiatto
2008-02-24 22:34 ` Sven Bretfeld
` (2 more replies)
0 siblings, 3 replies; 20+ messages in thread
From: Thierry Volpiatto @ 2008-02-24 21:10 UTC (permalink / raw)
To: Sven Bretfeld; +Cc: help-gnu-emacs
Ho! it's an emacs unicode, you have to use bitstream font or dejavu
fonts, here my config:(work with emacs unicode and non unicode)
;; To make emacs no unicode and emacs unicode working
;; with same config.
(if (charsetp 'unicode-bmp)
(progn
(prefer-coding-system 'utf-8)
(set-default-font "Bitstream Vera Sans Mono-12:weight=bold"))
(set-default-font "-misc-fixed-bold-*-normal-*-14-*-75-75-*-*-iso8859-15")
(if (not (assoc "UTF-8" language-info-alist))
(set-language-environment "latin-9")
(set-language-environment "utf-8")
(set-keyboard-coding-system 'utf-8)
(set-terminal-coding-system 'utf-8)
(prefer-coding-system 'utf-8)))
--
A + Thierry
Pub key: http://pgp.mit.edu
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-24 21:10 ` Thierry Volpiatto
@ 2008-02-24 22:34 ` Sven Bretfeld
2008-02-25 12:39 ` Sven Bretfeld
[not found] ` <mailman.7903.1203943187.18990.help-gnu-emacs@gnu.org>
2 siblings, 0 replies; 20+ messages in thread
From: Sven Bretfeld @ 2008-02-24 22:34 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 1666 bytes --]
Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
Hi Thierry
Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
> Ho! it's an emacs unicode, you have to use bitstream font or dejavu
> fonts, here my config:(work with emacs unicode and non unicode)
>
> ;; To make emacs no unicode and emacs unicode working
> ;; with same config.
>
> (if (charsetp 'unicode-bmp)
> (progn
> (prefer-coding-system 'utf-8)
> (set-default-font "Bitstream Vera Sans Mono-12:weight=bold"))
> (set-default-font "-misc-fixed-bold-*-normal-*-14-*-75-75-*-*-iso8859-15")
> (if (not (assoc "UTF-8" language-info-alist))
> (set-language-environment "latin-9")
> (set-language-environment "utf-8")
> (set-keyboard-coding-system 'utf-8)
> (set-terminal-coding-system 'utf-8)
> (prefer-coding-system 'utf-8)))
It's working better now. I use your code above but the font is too
small for me. I changed the line (set-default-font "Bitstream Vera
Sans Mono-12:weight=bold")) to:
,----
| (set-default-font "DejaVu Sans-20:weight=medium"))
`----
However, "customize-faces default" says, the default font is
"unknown-dejavu sans". Something still seems not correct.
Also, there are still some fontsizes unavailable. Depending on the
default size (I tried 12, 16, 18, and finally 20), either the \part{}
and \section{} headings or the \chapter{} and \section{} headings in AucTeX again
turn up tiny. I think, the pre-defined font sizes for these faces are
unavailable. Is it possible to build them?
At least italic and bold fonts are visible now. I liked adobe-courier
more.
Greetings
Sven
[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-24 21:10 ` Thierry Volpiatto
2008-02-24 22:34 ` Sven Bretfeld
@ 2008-02-25 12:39 ` Sven Bretfeld
2008-02-25 13:19 ` Peter Dyballa
[not found] ` <mailman.7903.1203943187.18990.help-gnu-emacs@gnu.org>
2 siblings, 1 reply; 20+ messages in thread
From: Sven Bretfeld @ 2008-02-25 12:39 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 142 bytes --]
Hi
I've now downgraded my Emacs version to 23.0.50 again. I think I will
be happier with this one.
Thanks for all your help
Sven
[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
[parent not found: <mailman.7903.1203943187.18990.help-gnu-emacs@gnu.org>]
* Re: Too small fonts after Emacs-Snapshot update
[not found] ` <mailman.7903.1203943187.18990.help-gnu-emacs@gnu.org>
@ 2008-02-25 18:22 ` Romain Francoise
[not found] ` <mailman.7941.1203989923.18990.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 20+ messages in thread
From: Romain Francoise @ 2008-02-25 18:22 UTC (permalink / raw)
To: Sven Bretfeld; +Cc: help-gnu-emacs
Sven Bretfeld <sven.bretfeld@gmx.ch> writes:
> I've now downgraded my Emacs version to 23.0.50 again. I think I
> will be happier with this one.
Or you could keep the latest snapshot and use --disable-font-backend,
I guess.
^ permalink raw reply [flat|nested] 20+ messages in thread
[parent not found: <mailman.7941.1203989923.18990.help-gnu-emacs@gnu.org>]
* Re: Too small fonts after Emacs-Snapshot update
[not found] ` <mailman.7941.1203989923.18990.help-gnu-emacs@gnu.org>
@ 2008-02-26 8:30 ` Tim X
2008-02-26 9:50 ` Peter Dyballa
` (2 more replies)
0 siblings, 3 replies; 20+ messages in thread
From: Tim X @ 2008-02-26 8:30 UTC (permalink / raw)
To: help-gnu-emacs
Romain Francoise <romain@orebokech.com> writes:
> Sven Bretfeld <sven.bretfeld@gmx.ch> writes:
>
>> I've now downgraded my Emacs version to 23.0.50 again. I think I
>> will be happier with this one.
>
> Or you could keep the latest snapshot and use --disable-font-backend,
> I guess.
>
>
I've found that even if you have built emacs with --enable-font-backend,
you can still use the normal fonts. I wasn't even aware that (for
example) your emacs-snapshot was being built with --enable-font-backend
and had just left my .Xresources Emacs.font: as it always has been - no
issues and no observable difference from earlier versions of either
emacs-snapshot or running emacs22.
I am currently dealing with a very odd problem though. I have two
machines, both running Debian. One one machine (this one) both
emacs-snapshot and an emacs I've built myself from CVS are working
fine. No issues.
However, on the other machine I get weird errors about void function
definitions, signal 11 segfaults, and other 'weirdness' in both the
latest emacs-snapshot and emacs built from CVS. The only real difference
between the two machines is that the one I'm having problems with has
been running Debian since 2001, upgrading from (I think)
potato/woody. The other machine was a fresh Debian install about 12
months ago. I suspect it could be some bit of 'kruft' left over from a
dist upgrade. Frustrating because its my work machine and I've not got
time to chase down the problme just now. Had to revert back to emacs22
until I get time to sort things out.
Tim
--
tcross (at) rapttech dot com dot au
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-26 8:30 ` Tim X
@ 2008-02-26 9:50 ` Peter Dyballa
2008-02-26 14:59 ` Romain Francoise
[not found] ` <mailman.7949.1204019436.18990.help-gnu-emacs@gnu.org>
2 siblings, 0 replies; 20+ messages in thread
From: Peter Dyballa @ 2008-02-26 9:50 UTC (permalink / raw)
To: Tim X; +Cc: help-gnu-emacs
Am 26.02.2008 um 09:30 schrieb Tim X:
> I suspect it could be some bit of 'kruft' left over from a dist
> upgrade.
LibXft can be a problem – this is true in Mac OS X 10.4 (Tiger):
libXft is obviously too old here.
Recent GNU Emacs 23.0.60 is able to use more than one font backend:
X11, Freetype, Xft:
!Emacs.FontBackend: x
!Emacs.FontBackend: xft
!Emacs.FontBackend: ftx
Since some days you can combine backends:
Emacs.FontBackend: x,xft
There can also be another source of problems: libfontconfig. It has
to be modern, too, to allow to select fonts by certain properties.
--
Greetings
Pete
I hope to die before I *have* to use Microsoft Word.
- Donald E. Knuth, 2001-10-02 in Tübingen.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-26 8:30 ` Tim X
2008-02-26 9:50 ` Peter Dyballa
@ 2008-02-26 14:59 ` Romain Francoise
2008-02-27 7:38 ` Tim X
[not found] ` <mailman.7949.1204019436.18990.help-gnu-emacs@gnu.org>
2 siblings, 1 reply; 20+ messages in thread
From: Romain Francoise @ 2008-02-26 14:59 UTC (permalink / raw)
To: help-gnu-emacs
Hi Tim,
Tim X <timx@nospam.dev.null> writes:
> However, on the other machine I get weird errors about void
> function definitions, signal 11 segfaults, and other 'weirdness'
> in both the latest emacs-snapshot and emacs built from CVS.
Running Emacs under gdb and getting debug traces would be a good
starting point. You can also install the apt-show-versions package
and compare the output on your two machines--you may have installed
an library package from a third party a few years ago and forgotten
about it. Also run 'debsums -ca', just in case: it will list the
files which have changed on your system compared to their pristine
packaged version.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Too small fonts after Emacs-Snapshot update
2008-02-26 14:59 ` Romain Francoise
@ 2008-02-27 7:38 ` Tim X
0 siblings, 0 replies; 20+ messages in thread
From: Tim X @ 2008-02-27 7:38 UTC (permalink / raw)
To: help-gnu-emacs
Romain Francoise <romain@orebokech.com> writes:
> Hi Tim,
>
> Tim X <timx@nospam.dev.null> writes:
>
>> However, on the other machine I get weird errors about void
>> function definitions, signal 11 segfaults, and other 'weirdness'
>> in both the latest emacs-snapshot and emacs built from CVS.
>
> Running Emacs under gdb and getting debug traces would be a good
> starting point. You can also install the apt-show-versions package
> and compare the output on your two machines--you may have installed
> an library package from a third party a few years ago and forgotten
> about it. Also run 'debsums -ca', just in case: it will list the
> files which have changed on your system compared to their pristine
> packaged version.
Thanks for the suggestions. It turns out I appear to have a memory error
- the box is getting a bit long in the tooth and I actually have a
replacement one - just haven't got around to migrating. Now migration is
a higher priority!
Tim
--
tcross (at) rapttech dot com dot au
^ permalink raw reply [flat|nested] 20+ messages in thread
[parent not found: <mailman.7949.1204019436.18990.help-gnu-emacs@gnu.org>]
* Re: Too small fonts after Emacs-Snapshot update
[not found] ` <mailman.7949.1204019436.18990.help-gnu-emacs@gnu.org>
@ 2008-02-27 7:35 ` Tim X
0 siblings, 0 replies; 20+ messages in thread
From: Tim X @ 2008-02-27 7:35 UTC (permalink / raw)
To: help-gnu-emacs
Peter Dyballa <Peter_Dyballa@Web.DE> writes:
> Am 26.02.2008 um 09:30 schrieb Tim X:
>
>> I suspect it could be some bit of 'kruft' left over from a dist upgrade.
>
>
> LibXft can be a problem – this is true in Mac OS X 10.4 (Tiger): libXft is
> obviously too old here.
>
> Recent GNU Emacs 23.0.60 is able to use more than one font backend: X11,
> Freetype, Xft:
>
> !Emacs.FontBackend: x
> !Emacs.FontBackend: xft
> !Emacs.FontBackend: ftx
>
> Since some days you can combine backends:
>
> Emacs.FontBackend: x,xft
>
> There can also be another source of problems: libfontconfig. It has to be
> modern, too, to allow to select fonts by certain properties.
>
thanks Pete. Actually, my problems now appear to be hardware
based. Looks like I've developed some bad memory in my system. However,
the stuff you provided on specifying the font backend is very
interesting and I will be experimenting to see what, if any,
differences I get.
Tim
>
--
tcross (at) rapttech dot com dot au
^ permalink raw reply [flat|nested] 20+ messages in thread
[parent not found: <mailman.7866.1203886166.18990.help-gnu-emacs@gnu.org>]
* Re: Too small fonts after Emacs-Snapshot update
[not found] ` <mailman.7866.1203886166.18990.help-gnu-emacs@gnu.org>
@ 2008-02-25 6:38 ` Tim X
0 siblings, 0 replies; 20+ messages in thread
From: Tim X @ 2008-02-25 6:38 UTC (permalink / raw)
To: help-gnu-emacs
Sven Bretfeld <sven.bretfeld@gmx.ch> writes:
> Hi Thierry
>
> Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
>
>> It seem emacs start with default fonts because it don't find anymore
>> your adobe-courier fonts (or don't recognize ?)
>> which version of emacs is it?
>
> It's 23.0.60.1.
>
> I will try to change the default font to see if this works better.
>
How are you setting the default font?
Try specifying a font on the command line when you start emacs. Note
also that I believe that emacs-snapshot is built with the
--endable-font-backend. this means you can use things like
emacs-snapshot -fn "Bitstream Sans Mono-10"
but of course, you need to have the appropriate fonts installed.
Tim
--
tcross (at) rapttech dot com dot au
^ permalink raw reply [flat|nested] 20+ messages in thread
[parent not found: <FB31DE45-543C-47D2-BDD2-FAD4BE6C1FED@Web.DE>]
[parent not found: <mailman.7863.1203884313.18990.help-gnu-emacs@gnu.org>]
end of thread, other threads:[~2008-03-03 22:01 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-24 20:18 Too small fonts after Emacs-Snapshot update Sven Bretfeld
2008-02-24 20:44 ` Thierry Volpiatto
2008-02-24 20:49 ` Sven Bretfeld
2008-02-24 21:10 ` Thierry Volpiatto
2008-02-24 22:34 ` Sven Bretfeld
2008-02-25 12:39 ` Sven Bretfeld
2008-02-25 13:19 ` Peter Dyballa
2008-02-25 13:48 ` Sven Bretfeld
2008-02-25 13:52 ` Bastien
[not found] ` <mailman.7903.1203943187.18990.help-gnu-emacs@gnu.org>
2008-02-25 18:22 ` Romain Francoise
[not found] ` <mailman.7941.1203989923.18990.help-gnu-emacs@gnu.org>
2008-02-26 8:30 ` Tim X
2008-02-26 9:50 ` Peter Dyballa
2008-02-26 14:59 ` Romain Francoise
2008-02-27 7:38 ` Tim X
[not found] ` <mailman.7949.1204019436.18990.help-gnu-emacs@gnu.org>
2008-02-27 7:35 ` Tim X
[not found] ` <mailman.7866.1203886166.18990.help-gnu-emacs@gnu.org>
2008-02-25 6:38 ` Tim X
[not found] ` <FB31DE45-543C-47D2-BDD2-FAD4BE6C1FED@Web.DE>
2008-02-24 20:58 ` Sven Bretfeld
[not found] ` <37312008-B32F-4CCB-8A8E-23CEAC0FC882@Web.DE>
2008-02-24 22:47 ` Sven Bretfeld
2008-02-25 0:26 ` Peter Dyballa
[not found] <mailman.7863.1203884313.18990.help-gnu-emacs@gnu.org>
2008-03-03 22:01 ` Stefan Monnier
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.