After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 506752 - --font doesn't work
--font doesn't work
Status: RESOLVED FIXED
Product: gucharmap
Classification: Core
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gucharmap maintainers
gucharmap maintainers
: 516843 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2008-01-01 21:35 UTC by Christian Persch
Modified: 2008-03-23 13:02 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
first try (3.24 KB, patch)
2008-02-16 14:36 UTC, Jared Moore
none Details | Review
memory leak fixed (3.20 KB, patch)
2008-03-16 09:10 UTC, Jared Moore
accepted-commit_now Details | Review

Description Christian Persch 2008-01-01 21:35:18 UTC
$ gucharmap --font serif

Results:
Still using sans.
Comment 1 Christian Persch 2008-02-16 14:30:09 UTC
*** Bug 516843 has been marked as a duplicate of this bug. ***
Comment 2 Jared Moore 2008-02-16 14:36:03 UTC
Created attachment 105385 [details] [review]
first try

This seems to work fairly nicely. Some of the code in main.c should probably be moved into gucharmap_mini_fontselection_init.
Comment 3 Christian Persch 2008-02-16 22:35:02 UTC
Looks good to me. Behdad?
Comment 4 Behdad Esfahbod 2008-02-17 06:17:54 UTC
Didn't look very closely but I trust that it does the right thing :).  Minor thing, the g_strdup is not needed.  It leaks now.
Comment 5 Jared Moore 2008-02-17 09:17:51 UTC
Ok, cool. Unless I've missed something (which is probable), the pango documentation doesn't seem to say that the family string is copied. Could that be fixed?
Comment 6 Behdad Esfahbod 2008-02-17 09:43:08 UTC
(In reply to comment #5)
> Ok, cool. Unless I've missed something (which is probable), the pango
> documentation doesn't seem to say that the family string is copied. Could that
> be fixed?

I thought about that, but I believe the norm in glib and pango is that if it doesn't say anything about the lifecycle of the string passed in, it means you are safe to dispose it.  That of course means that it copies it.  When a copy is not made, the docs explicity say that the string/object/... needs to be kept alive until ....

For example pango_font_description_set_family_static() docs say: "The caller must make sure that the string passed in stays around until desc has been freed or the name is set again."
Comment 7 Jared Moore 2008-02-17 09:46:44 UTC
That makes sense. Thanks :)
Comment 8 Jared Moore 2008-03-16 09:10:30 UTC
Created attachment 107375 [details] [review]
memory leak fixed


	Bug 506752 – --font doesn't work
	Patch by Jared Moore

	* gucharmap-mini-font-selection.c 
	(gucharmap_mini_font_selection_set_font_name):
	If given font description doesn't have a font family, keep the old one.
	* main.c (main):
	Fixed faulty logic for dealing with command line arguments.


Is there anything I can do to help get patches committed faster? (I also have a patch waiting at #517188). :)
Comment 9 Christian Persch 2008-03-17 22:16:18 UTC
I was waiting for 2.22.0, I guess I should have let you know that :)

Please commit to trunk and 2-22 branch.
Comment 10 Jared Moore 2008-03-18 00:43:43 UTC
I don't have commit access. If you'd like, I could apply for it.
Comment 11 Christian Persch 2008-03-18 23:21:24 UTC
No problem, I'll commit them soon, or if someone else with commit access wants to, feel free to do so.
Comment 12 Christian Persch 2008-03-23 13:02:07 UTC
Committed.