unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Files that begin with a period
@ 2008-10-19 10:29 Eli Zaretskii
  2008-10-19 13:07 ` Stefan Monnier
  0 siblings, 1 reply; 14+ messages in thread
From: Eli Zaretskii @ 2008-10-19 10:29 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-devel

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)




^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2008-10-24 10:25 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-19 10:29 Files that begin with a period Eli Zaretskii
2008-10-19 13:07 ` 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

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).