| Summary: | doesn\'t find source for functions if bz2-compressed | ||
|---|---|---|---|
| Product: | Sisyphus | Reporter: | imz <vanyaz> |
| Component: | emacs-common | Assignee: | Ivan Zakharyaschev <imz> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | minor | ||
| Priority: | P5 | CC: | sbolshakov |
| Version: | unstable | ||
| Hardware: | all | ||
| OS: | Linux | ||
|
Description
imz
2003-01-13 20:57:41 MSK
emacs-21.2-alt14: patched to fix this (emacs-21.2-alt14-load-el_bz2.patch):
--- emacs-21.2.orig/lisp/emacs-lisp/find-func.el 2001-07-25 19:04:21 +0400
+++ emacs-21.2/lisp/emacs-lisp/find-func.el 2003-02-10 22:21:06 +0300
@@ -130,7 +130,11 @@
(if compression
(or (locate-library (concat library \".el.gz\")
t path)
+ (locate-library (concat library \".el.bz2\")
+ t path)
(locate-library (concat library \".gz\")
+ t path)
+ (locate-library (concat library \".bz2\")
t path)))))))
(if (not filename)
(error \"The library `%s\' is not in the path\" library))
(There is also a second part of the patch to make loading bzipped2 libs possible.)
emacs-21.2-alt14: patched to fix this (emacs-21.2-alt14-load-el_bz2.patch):
--- emacs-21.2.orig/lisp/emacs-lisp/find-func.el 2001-07-25 19:04:21 +0400
+++ emacs-21.2/lisp/emacs-lisp/find-func.el 2003-02-10 22:21:06 +0300
@@ -130,7 +130,11 @@
(if compression
(or (locate-library (concat library \".el.gz\")
t path)
+ (locate-library (concat library \".el.bz2\")
+ t path)
(locate-library (concat library \".gz\")
+ t path)
+ (locate-library (concat library \".bz2\")
t path)))))))
(if (not filename)
(error \"The library `%s\' is not in the path\" library))
(There is also a second part of the patch to make loading bzipped2 libs possible.)
|