• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

修订版5d49ff5360b3942079d922b027e15c1982cf3d21 (tree)
时间2000-02-15 03:08:55
作者john <john>
Commiterjohn

Log Message

*** empty log message ***

更改概述

差异

--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
1+2000-02-14 John Harper <john@dcs.warwick.ac.uk>
2+
3+ * version 0.24
4+
5+ * workspace.jl: add calls to add-to-workspace-hook and
6+ remove-from-workspace-hook (they must have got deleted)
7+
18 2000-02-11 John Harper <john@dcs.warwick.ac.uk>
29
310 * sawmill-defaults.jl: remove the custom-add-required thing,
--- a/man/news.texi
+++ b/man/news.texi
@@ -53,6 +53,13 @@ are now aligned into columns (if you use a monospaced font for them)
5353
5454 @item New option @code{move-resize-inhibit-configure}
5555
56
57+Gillot), gl (Jesus Bravo Alvarez), nl (Han-Wen Nienhuys), pt_PT (Rui
58+Silva), sv (Andreas Persenius)
59+
60+@item Fixed single-quoting in client readline (Matt Krai), copied
61+bouncing parentheses hack
62+
5663 @item Removed @code{fp->win == 0} assertion, it should be harmless and
5764 was triggering for some people
5865
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,17 @@
1+2000-02-14 John Harper <john@dcs.warwick.ac.uk>
2+
3+ * version 0.24
4+
5+ * sawmill.h (Lisp_Font): support for both XFontSet and
6+ XFontStruct representations
7+
8+ * fonts.c (Fget_font): if a FontSet can't be created, try to
9+ load a FontStruct
10+ (x_text_width, x_draw_string): switch on actual font
11+ representation
12+
13+ * frames.c, functions.c: use x_text_width () and x_draw_string ()
14+
115 2000-02-11 John Harper <john@dcs.warwick.ac.uk>
216
317 * events.c (configure_request): marshal the event to an alist,
--- a/src/sawmill_subrs.h
+++ b/src/sawmill_subrs.h
@@ -108,6 +108,9 @@ extern void events_kill (void);
108108 /* from fonts.c */
109109 extern int font_type;
110110 extern repv Qdefault_font;
111+extern int x_text_width (repv font, u_char *string, size_t len);
112+extern void x_draw_string (Window id, repv font, GC gc,
113+ int x, int y, u_char *string, size_t len);
111114 extern repv Fget_font(repv name);
112115 extern repv Ffont_get(repv font, repv prop);
113116 extern repv Ffont_put(repv font, repv prop, repv value);