diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-06 05:16:23 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-06 05:16:23 +0000 |
commit | 1e8780b173424f554a7d2248140c05d2e5f98247 (patch) | |
tree | 981be03e5470bb0a02434906806490aec52d9010 /lisp/paths.el | |
parent | 0adae11f3764d09e59f6705e373cee31c316c3d2 (diff) | |
download | emacs-1e8780b173424f554a7d2248140c05d2e5f98247.tar.gz |
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index ea10762a3aa..7af0136a478 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -102,23 +102,24 @@ for initializing `Info-directory-list' when Info is started, unless the environment variable INFOPATH is set.") (defvar news-directory - (if (file-exists-p "/usr/spool/news/") + (purecopy (if (file-exists-p "/usr/spool/news/") "/usr/spool/news/" - "/var/spool/news/") + "/var/spool/news/")) "The root directory below which all news files are stored.") (defvaralias 'news-path 'news-directory) (defvar news-inews-program + (purecopy (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews") ((file-exists-p "/usr/local/inews") "/usr/local/inews") ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews") ((file-exists-p "/usr/contrib/lib/news/inews") "/usr/contrib/lib/news/inews") ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews") - (t "inews")) + (t "inews"))) "Program to post news.") ;; set this to your local server -(defvar gnus-default-nntp-server "" "\ +(defvar gnus-default-nntp-server (purecopy "") "\ The name of the host running an NNTP server. The null string means use the local host as the server site.") @@ -154,6 +155,7 @@ Name of user's primary mail file." Its name should end with a slash.") (defcustom remote-shell-program + (purecopy (cond ;; Some systems use rsh for the remote shell; others use that name for the ;; restricted shell and use remsh for the remote shell. Let's try to guess @@ -173,7 +175,7 @@ Its name should end with a slash.") ((file-exists-p "/bin/rcmd") "/bin/rcmd") ((file-exists-p "/bin/rsh") "/bin/rsh") ((file-exists-p "/usr/bin/rsh") "/usr/bin/rsh") - (t "rsh")) + (t "rsh"))) "File name for remote-shell program (often rsh or remsh)." :group 'environment :type 'file) |