• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
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

Revisãob611b836d5c4a3e2fd06f3583abf51bbb9fcf6c3 (tree)
Hora2000-05-04 07:02:05
Autorjohn <john>
Commiterjohn

Mensagem de Log

(match-window:edit): use non-destructive operations when splitting
property list into bool/non-bool sets

Mudança Sumário

Diff

--- a/src/sawmill-ui.jl
+++ b/src/sawmill-ui.jl
@@ -3,7 +3,7 @@ exec rep "$0" "$@"
33 !#
44
55 ;; sawmill-ui -- subprocess to handle configuration user interface
6-;; $Id: sawmill-ui.jl,v 1.58 2000/04/12 14:01:44 john Exp $
6+;; $Id: sawmill-ui.jl,v 1.59 2000/04/24 23:55:03 john Exp $
77
88 ;; Copyright (C) 1999 John Harper <john@dcs.warwick.ac.uk>
99
@@ -1131,8 +1131,8 @@ exec rep "$0" "$@"
11311131 ;; move boolean properties to head of list for best effect
11321132 (setq bool-props (filter (lambda (p)
11331133 (eq (nth 1 p) 'boolean)) properties))
1134- (setq properties (delete-if (lambda (p)
1135- (eq (nth 1 p) 'boolean)) properties))
1134+ (setq properties (filter (lambda (p)
1135+ (not (eq (nth 1 p) 'boolean))) properties))
11361136
11371137 (setq table (gtk-table-new (1+ (quotient (length bool-props) 3)) 3 nil))
11381138 (setq table-2 (gtk-table-new (length properties) 2 nil))