diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2010-05-31 20:05:17 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2010-05-31 20:05:17 +0000 |
commit | db1e57d927abda8aeb29dc9cb993601971ceb8ae (patch) | |
tree | 048d7ef1aa3fa984ebe691d560854eaa9046bc9e /x11-wm/sawfish/files | |
parent | x86 stable wrt bug #320711 (diff) | |
download | gentoo-2-db1e57d927abda8aeb29dc9cb993601971ceb8ae.tar.gz gentoo-2-db1e57d927abda8aeb29dc9cb993601971ceb8ae.tar.bz2 gentoo-2-db1e57d927abda8aeb29dc9cb993601971ceb8ae.zip |
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm/sawfish/files')
-rw-r--r-- | x11-wm/sawfish/files/sawfish-1.6.3-prompt.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/x11-wm/sawfish/files/sawfish-1.6.3-prompt.patch b/x11-wm/sawfish/files/sawfish-1.6.3-prompt.patch new file mode 100644 index 000000000000..7666746ab770 --- /dev/null +++ b/x11-wm/sawfish/files/sawfish-1.6.3-prompt.patch @@ -0,0 +1,22 @@ +--- sawfish/lisp/sawfish/wm/util/prompt.jl ++++ sawfish/lisp/sawfish/wm/util/prompt.jl +@@ -121,10 +121,15 @@ + ;; Compilation hack: ensure that the compiler doesn't complain when + ;; these are treated like functions and passed values. + (eval-when-compile +- (setq prompt-completion-fun (lambda (#!rest) nil) +- prompt-validation-fun (lambda (#!rest) nil) +- prompt-abbrev-fun (lambda (#!rest) nil) +- prompt-display-fun (lambda (#!rest) nil))) ++ (progn ++ (defvar prompt-completion-fun nil) ++ (defvar prompt-validation-fun nil) ++ (defvar prompt-abbrev-fun nil) ++ (defvar prompt-display-fun nil) ++ (setq prompt-completion-fun (lambda (#!rest) nil) ++ prompt-validation-fun (lambda (#!rest) nil) ++ prompt-abbrev-fun (lambda (#!rest) nil) ++ prompt-display-fun (lambda (#!rest) nil)))) + + + ;; From merlin |