Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
40cf8f25
Commit
40cf8f25
authored
Feb 25, 2002
by
Juanma Barranquero
Browse files
(ielm-prompt): Allow customization; make it read-only.
parent
e63e8d3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lisp/ielm.el
lisp/ielm.el
+6
-2
No files found.
lisp/ielm.el
View file @
40cf8f25
...
@@ -70,8 +70,12 @@
...
@@ -70,8 +70,12 @@
:type
'boolean
:type
'boolean
:group
'ielm
)
:group
'ielm
)
(
defvar
ielm-prompt
"ELISP> "
(
defcustom
ielm-prompt
"ELISP> "
"Prompt used in IELM."
)
"Prompt used in IELM."
:type
'string
:group
'ielm
:get
#'
(
lambda
(
symbol
)
(
substring-no-properties
(
symbol-value
symbol
)))
:set
#'
(
lambda
(
symbol
value
)
(
set
symbol
(
propertize
value
'read-only
t
'rear-nonsticky
t
))))
(
defcustom
ielm-dynamic-return
t
(
defcustom
ielm-dynamic-return
t
"*Controls whether \\<ielm-map>\\[ielm-return] has intelligent behaviour in IELM.
"*Controls whether \\<ielm-map>\\[ielm-return] has intelligent behaviour in IELM.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment