[uim-commit] r679 - trunk/scm
yamaken at freedesktop.org
yamaken at freedesktop.org
Sun Feb 20 05:26:31 PST 2005
Author: yamaken
Date: 2005-02-20 05:26:28 -0800 (Sun, 20 Feb 2005)
New Revision: 679
Modified:
trunk/scm/plugin.scm
Log:
* scm/plugin.scm
- (load-enabled-modules): Fix the broken modification committed in r676
Modified: trunk/scm/plugin.scm
===================================================================
--- trunk/scm/plugin.scm 2005-02-20 13:16:29 UTC (rev 678)
+++ trunk/scm/plugin.scm 2005-02-20 13:26:28 UTC (rev 679)
@@ -144,7 +144,6 @@
(file "loader.scm")
(user-file (string-append user-module-dir file)))
(and (try-load file)
- (or
- (if (is-set-ugid?)
- (try-load user-file)
- #t))))))
+ (or (and (not (is-set-ugid?))
+ (try-load user-file))
+ #t)))))
More information about the Uim-commit
mailing list