[uim-commit] r192 - trunk/scm
tkng@freedesktop.org
tkng@freedesktop.org
Sun Jan 9 09:53:12 PST 2005
Author: tkng
Date: 2005-01-09 09:53:09 -0800 (Sun, 09 Jan 2005)
New Revision: 192
Modified:
trunk/scm/plugin.scm
Log:
* scm/plugin.scm:
-(uim-plugin-lib-load-path): Fixed that the priority of LIBUIM_PLUGIN_DIR
was lower than other pathes.
-(uim-plugin-scm-load-path): Fixed that the priority of LIBUIM_SCM_FILES
was lower than other pathes.
Modified: trunk/scm/plugin.scm
===================================================================
--- trunk/scm/plugin.scm 2005-01-09 15:47:11 UTC (rev 191)
+++ trunk/scm/plugin.scm 2005-01-09 17:53:09 UTC (rev 192)
@@ -41,12 +41,12 @@
(if (getenv "LIBUIM_PLUGIN_DIR")
(set! uim-plugin-lib-load-path
- (append uim-plugin-lib-load-path
- (list (getenv "LIBUIM_PLUGIN_DIR")))))
+ (append (list (getenv "LIBUIM_PLUGIN_DIR"))
+ uim-plugin-lib-load-path)))
(if (getenv "LIBUIM_SCM_FILES")
(set! uim-plugin-scm-load-path
- (append uim-plugin-scm-load-path
- (list (getenv "LIBUIM_SCM_FILES")))))
+ (append (list (getenv "LIBUIM_SCM_FILES"))
+ uim-plugin-scm-load-path)))
;;; XXX
(if (getenv "LD_LIBRARY_PATH")
More information about the Uim-commit
mailing list