#!/bin/sh -e
## 10_adapt_debian_emacs_policy.dpatch by Hidetaka Iwai <tyuyu@debian.or.jp>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.
if [ $# -lt 1 ]; then
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
fi
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
case "$1" in
-patch) patch $patch_opts -p1 < $0;;
-unpatch) patch $patch_opts -p1 -R < $0;;
*)
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1;;
esac
exit 0
@DPATCH@
diff -urNad /home/tyuyu/debworks/mell/mell-1.0.0/etc/_init-mell.el.in mell-1.0.0/etc/_init-mell.el.in
--- /home/tyuyu/debworks/mell/mell-1.0.0/etc/_init-mell.el.in 2004-02-03 07:49:13.000000000 +0900
+++ mell-1.0.0/etc/_init-mell.el.in 2004-02-03 07:50:04.000000000 +0900
@@ -8,9 +8,6 @@
;;;; You can redistribute it and/or modify it under the terms of
;;;; the GNU General Public License version 2.
-(setq load-path
- (cons (expand-file-name (concat "@emacs_sitelisp_dir@"
- "/@PACKAGE@")) load-path))
(defconst @PACKAGE@-version '("@VERSION@" "@DATE@"))
(provide '@MELL_FEATURE_NAME@)