all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Carsten Dominik <dominik@science.uva.nl>
Cc: emacs-devel@gnu.org
Subject: Files that begin with a period
Date: Sun, 19 Oct 2008 12:29:26 +0200	[thread overview]
Message-ID: <uzll0khdl.fsf@gnu.org> (raw)

I installed today in several Lisp files, including in the `lisp/org'
directory, changes that run file names which supply values to
defcustom's through `convert-standard-filename'.  This is for when
Emacs runs on 8+3 (a.k.a. DOS) filesystems that do not allow file
names with a leading period.  (On modern filesystems,
`convert-standard-filename' leaves the file name intact.)

The changes to the Org files appear below, for your convenience when
merging them with your repository.

Thanks.


2008-10-19  Eli Zaretskii  <eliz@gnu.org>

	* org.el (org-default-notes-file): 
	* org-publish.el (org-publish-timestamp-directory): 
	* org-id.el (org-id-locations-file): Run file names that begin
	with a period thru `convert-standard-filename'.

Index: org/org.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/org/org.el,v
retrieving revision 1.16
diff -u -r1.16 org.el
--- org/org.el	12 Oct 2008 06:12:47 -0000	1.16
+++ org/org.el	19 Oct 2008 10:16:49 -0000
@@ -1204,7 +1204,7 @@
   :group 'org-remember
   :type 'directory)
 
-(defcustom org-default-notes-file "~/.notes"
+(defcustom org-default-notes-file (convert-standard-filename "~/.notes")
   "Default target for storing notes.
 Used by the hooks for remember.el.  This can be a string, or nil to mean
 the value of `remember-data-file'.
Index: org/org-publish.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/org/org-publish.el,v
retrieving revision 1.8
diff -u -r1.8 org-publish.el
--- org/org-publish.el	12 Oct 2008 06:12:46 -0000	1.8
+++ org/org-publish.el	19 Oct 2008 10:17:17 -0000
@@ -276,7 +276,8 @@
   :group 'org-publish
   :type 'boolean)
 
-(defcustom org-publish-timestamp-directory "~/.org-timestamps/"
+(defcustom org-publish-timestamp-directory
+  (convert-standard-filename "~/.org-timestamps/")
   "Name of directory in which to store publishing timestamps."
   :group 'org-publish
   :type 'directory)
Index: org/org-id.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/org/org-id.el,v
retrieving revision 1.5
diff -u -r1.5 org-id.el
--- org/org-id.el	12 Oct 2008 06:12:45 -0000	1.5
+++ org/org-id.el	19 Oct 2008 10:17:28 -0000
@@ -116,7 +116,7 @@
   :group 'org-id
   :type 'boolean)
 
-(defcustom org-id-locations-file "~/.org-id-locations"
+(defcustom org-id-locations-file (convert-standard-filename "~/.org-id-locations")
   "The file for remembering the last ID number generated."
   :group 'org-id
   :type 'file)




             reply	other threads:[~2008-10-19 10:29 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-19 10:29 Eli Zaretskii [this message]
2008-10-19 13:07 ` Files that begin with a period Stefan Monnier
2008-10-19 13:39   ` Eli Zaretskii
2008-10-19 20:04     ` Stefan Monnier
2008-10-20  9:03       ` Juanma Barranquero
2008-10-20 11:19         ` Eli Zaretskii
2008-10-20 11:32           ` Juanma Barranquero
2008-10-20 12:07             ` Eli Zaretskii
2008-10-23 18:29             ` Stefan Monnier
2008-10-23 21:49               ` Eli Zaretskii
2008-10-24  9:46                 ` Juanma Barranquero
2008-10-24  4:18               ` Stephen J. Turnbull
2008-10-24 10:25               ` Juanma Barranquero
2008-10-20  9:33       ` Eli Zaretskii

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=uzll0khdl.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=dominik@science.uva.nl \
    --cc=emacs-devel@gnu.org \
    /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.