summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-09-08 19:08:05 +0000
committerUlrich Müller <ulm@gentoo.org>2009-09-08 19:08:05 +0000
commitb8547a7951bc6d1ed1cdbd4fcf3c1e1b8dfb9a1d (patch)
tree1492561cff9ed5d35ca7a78a17534591bc5f7651 /eclass/elisp-common.eclass
parentMark site-gentoo.el as buffer-read-only, in order to prevent (diff)
downloademacs-b8547a7951bc6d1ed1cdbd4fcf3c1e1b8dfb9a1d.tar.gz
emacs-b8547a7951bc6d1ed1cdbd4fcf3c1e1b8dfb9a1d.tar.bz2
emacs-b8547a7951bc6d1ed1cdbd4fcf3c1e1b8dfb9a1d.zip
Use null string instead of command substitution, it may be less fragile.
svn path=/emacs-overlay/; revision=1440
Diffstat (limited to 'eclass/elisp-common.eclass')
-rw-r--r--eclass/elisp-common.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass
index cbf337d..4fdca5b 100644
--- a/eclass/elisp-common.eclass
+++ b/eclass/elisp-common.eclass
@@ -196,7 +196,7 @@ elisp-emacs-version() {
# Generate a file with autoload definitions for the lisp functions.
elisp-make-autoload-file() {
- local f="${1:-${PN}-autoloads.el}"
+ local f="${1:-${PN}-autoloads.el}" null=""
shift
ebegin "Generating autoload file for GNU Emacs"
@@ -209,7 +209,7 @@ elisp-make-autoload-file() {
;;; Code:
FF
- ;; Local ``Variables:
+ ;; Local ${null}Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
@@ -282,7 +282,7 @@ elisp-site-file-install() {
# location is still supported when generating site-gentoo.el.
elisp-site-regen() {
- local i sf line obsolete
+ local i sf line obsolete null=""
local -a sflist
if [ ! -d "${ROOT}${SITELISP}" ]; then
@@ -336,7 +336,7 @@ elisp-site-regen() {
(provide 'site-gentoo)
- ;; Local ``Variables:
+ ;; Local ${null}Variables:
;; no-byte-compile: t
;; buffer-read-only: t
;; End: