• 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

修订版7e991bb55347d206f8e8c50468d25a2ebe58d6b8 (tree)
时间1999-08-02 22:43:40
作者john <john>
Commiterjohn

Log Message

(rep_dl_init): if ignored-window-names or sticky-window-names are void,
set them to nil before consing on the gnome window names

更改概述

差异

--- a/src/gnome.c
+++ b/src/gnome.c
@@ -204,6 +204,11 @@ rep_dl_init(repv file_name)
204204 rep_INTERN(sticky_window_names);
205205 rep_INTERN(ignored);
206206
207+ if (rep_VOIDP(rep_SYM(Qignored_window_names))->value)
208+ rep_SYM(Qignored_window_names)->value = Qnil;
209+ if (rep_VOIDP(rep_SYM(Qsticky_window_names))->value)
210+ rep_SYM(Qsticky_window_names)->value = Qnil;
211+
207212 rep_SYM(Qignored_window_names)->value
208213 = Fcons (rep_VAL(&gnome_windows),
209214 rep_SYM(Qignored_window_names)->value);