all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <ihs_4664@yahoo.com>
Subject: Re: auto-insert-alist
Date: Thu, 15 Jul 2004 17:38:34 -0600	[thread overview]
Message-ID: <40F7157A.2050106@yahoo.com> (raw)
In-Reply-To: oQCJc.77$VQ1.33@fe25.usenetserver.com

DrMemory wrote:
 > I'm sort of an elisp novice, but this seems to be the relevant code
 > from autoinsert.el:
 >
 > 	 ;; 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)
 > 	      (mapcar
 > 	       (lambda (action)
 > 		 (if (stringp action)
 > 		     (if (file-readable-p
 > 			  (setq action (concat auto-insert-directory action)))
 > 			 (insert-file-contents action))
 > 		[...]
 >
 > Looks to me as if the "absolute filename" option is illusory, and any file
 > to be inserted would have to be given relative to auto-insert-directory.

Yep: in both cases (concat auto-insert-directory action) should be
(expand-file-name action auto-insert-directory).

-- 
Kevin Rodgers

  reply	other threads:[~2004-07-15 23:38 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-07-14 16:36 auto-insert-alist DrMemory
2004-07-14 17:41 ` auto-insert-alist kgold
2004-07-14 17:56 ` auto-insert-alist Kevin Rodgers
2004-07-14 19:36   ` auto-insert-alist DrMemory
2004-07-15 15:54     ` auto-insert-alist Kevin Rodgers
2004-07-15 21:39       ` auto-insert-alist DrMemory
2004-07-15 23:38         ` Kevin Rodgers [this message]
2004-07-16 21:01           ` auto-insert-alist DrMemory
2004-07-16 21:55             ` auto-insert-alist Kevin Rodgers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=40F7157A.2050106@yahoo.com \
    --to=ihs_4664@yahoo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.