aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-09-29 11:30:52 -0700
committerGlenn Morris2012-09-29 11:30:52 -0700
commit3ef6d50528bf31c40b0f5c5b4be9f871d8d7e392 (patch)
tree85532f1f435af25696ff55bbfcb8d58a6a637a05
parent2923922f5ec17c2ccd38d7d7c7d3d98de357443d (diff)
downloademacs-3ef6d50528bf31c40b0f5c5b4be9f871d8d7e392.tar.gz
emacs-3ef6d50528bf31c40b0f5c5b4be9f871d8d7e392.zip
Remove purecopy's that are no longer needed following previous change
-rw-r--r--lisp/hippie-exp.el2
-rw-r--r--lisp/progmodes/inf-lisp.el8
2 files changed, 5 insertions, 5 deletions
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el
index 5639a4796a5..2f0a6e3af59 100644
--- a/lisp/hippie-exp.el
+++ b/lisp/hippie-exp.el
@@ -243,7 +243,7 @@ If nil, all buffers are searched."
243 integer) 243 integer)
244 :group 'hippie-expand) 244 :group 'hippie-expand)
245 245
246(defcustom hippie-expand-ignore-buffers (list (purecopy "^ \\*.*\\*$") 'dired-mode) 246(defcustom hippie-expand-ignore-buffers '("^ \\*.*\\*$" dired-mode)
247 "A list specifying which buffers not to search (if not current). 247 "A list specifying which buffers not to search (if not current).
248Can contain both regexps matching buffer names (as strings) and major modes 248Can contain both regexps matching buffer names (as strings) and major modes
249\(as atoms)" 249\(as atoms)"
diff --git a/lisp/progmodes/inf-lisp.el b/lisp/progmodes/inf-lisp.el
index cccda962082..f2578c14066 100644
--- a/lisp/progmodes/inf-lisp.el
+++ b/lisp/progmodes/inf-lisp.el
@@ -70,7 +70,7 @@
70 :version "22.1") 70 :version "22.1")
71 71
72(defcustom inferior-lisp-filter-regexp 72(defcustom inferior-lisp-filter-regexp
73 (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") 73 "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'"
74 "What not to save on inferior Lisp's input history. 74 "What not to save on inferior Lisp's input history.
75Input matching this regexp is not saved on the input history in Inferior Lisp 75Input matching this regexp is not saved on the input history in Inferior Lisp
76mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword 76mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword
@@ -136,12 +136,12 @@ mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword
136 (define-key inferior-lisp-mode-map "\C-cv" 136 (define-key inferior-lisp-mode-map "\C-cv"
137 'lisp-show-variable-documentation)) 137 'lisp-show-variable-documentation))
138 138
139(defcustom inferior-lisp-program (purecopy "lisp") 139(defcustom inferior-lisp-program "lisp"
140 "Program name for invoking an inferior Lisp in Inferior Lisp mode." 140 "Program name for invoking an inferior Lisp in Inferior Lisp mode."
141 :type 'string 141 :type 'string
142 :group 'inferior-lisp) 142 :group 'inferior-lisp)
143 143
144(defcustom inferior-lisp-load-command (purecopy "(load \"%s\")\n") 144(defcustom inferior-lisp-load-command "(load \"%s\")\n"
145 "Format-string for building a Lisp expression to load a file. 145 "Format-string for building a Lisp expression to load a file.
146This format string should use `%s' to substitute a file name 146This format string should use `%s' to substitute a file name
147and should result in a Lisp expression that will command the inferior Lisp 147and should result in a Lisp expression that will command the inferior Lisp
@@ -152,7 +152,7 @@ but it works only in Common Lisp."
152 :type 'string 152 :type 'string
153 :group 'inferior-lisp) 153 :group 'inferior-lisp)
154 154
155(defcustom inferior-lisp-prompt (purecopy "^[^> \n]*>+:? *") 155(defcustom inferior-lisp-prompt "^[^> \n]*>+:? *"
156 "Regexp to recognize prompts in the Inferior Lisp mode. 156 "Regexp to recognize prompts in the Inferior Lisp mode.
157Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl, 157Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl,
158and franz. This variable is used to initialize `comint-prompt-regexp' in the 158and franz. This variable is used to initialize `comint-prompt-regexp' in the