summaryrefslogtreecommitdiff
path: root/lisp/autoinsert.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2008-12-08 16:30:43 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2008-12-08 16:30:43 +0000
commitbdaf166cdf3a5bcc00963fe5ca1a91fdd421f2d5 (patch)
tree439c5982a54e008ebe78f14fdbd8e1dc60192ac8 /lisp/autoinsert.el
parent7c19d3aedbc55c4458bd8911aaa614c0c7f2c316 (diff)
downloademacs-bdaf166cdf3a5bcc00963fe5ca1a91fdd421f2d5.tar.gz
(auto-insert): Use expand-file-name instead of concat.
Suggested by Eric Hanchrow <eric.hanchrow@gmail.com>.
Diffstat (limited to 'lisp/autoinsert.el')
-rw-r--r--lisp/autoinsert.el21
1 files changed, 10 insertions, 11 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el
index 92a5f9f3f92..b276cc18f99 100644
--- a/lisp/autoinsert.el
+++ b/lisp/autoinsert.el
@@ -343,19 +343,19 @@ Matches the visited file name against the elements of `auto-insert-alist'."
;; Now, if we found something, do it
(and action
- (if (stringp action)
- (file-readable-p (concat auto-insert-directory action))
- t)
- (if auto-insert-query
- (or (if (eq auto-insert-query 'function)
- (eq this-command 'auto-insert))
- (y-or-n-p (format auto-insert-prompt desc)))
- t)
+ (or (not (stringp action))
+ (file-readable-p (expand-file-name
+ action auto-insert-directory)))
+ (or (not auto-insert-query)
+ (if (eq auto-insert-query 'function)
+ (eq this-command 'auto-insert))
+ (y-or-n-p (format auto-insert-prompt desc)))
(mapc
(lambda (action)
(if (stringp action)
(if (file-readable-p
- (setq action (concat auto-insert-directory action)))
+ (setq action (expand-file-name
+ action auto-insert-directory)))
(insert-file-contents action))
(save-window-excursion
;; make buffer visible before skeleton or function
@@ -393,8 +393,7 @@ or if CONDITION had no actions, after all other CONDITIONs."
(vector action (cdr elt)))))
(if after
(nconc auto-insert-alist (list (cons condition action)))
- (setq auto-insert-alist (cons (cons condition action)
- auto-insert-alist))))))
+ (push (cons condition action) auto-insert-alist)))))
;;;###autoload
(define-minor-mode auto-insert-mode