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
f3681087
Commit
f3681087
authored
Sep 20, 2008
by
Glenn Morris
Browse files
(lisp-indent-offset): Fix custom type. (Bug#1011)
parent
d3864ce9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emacs-lisp/lisp-mode.el
lisp/emacs-lisp/lisp-mode.el
+1
-1
No files found.
lisp/ChangeLog
View file @
f3681087
2008-09-20 Glenn Morris <rgm@gnu.org>
* emacs-lisp/lisp-mode.el (lisp-indent-offset):
Fix custom type. (Bug#1011)
2008-09-20 David De La Harpe Golden <david@harpegolden.net>
* files.el (move-file-to-trash): Avoid recursive trashing if
...
...
lisp/emacs-lisp/lisp-mode.el
View file @
f3681087
...
...
@@ -869,7 +869,7 @@ which see."
(
defcustom
lisp-indent-offset
nil
"If non-nil, indent second line of expressions that many more columns."
:group
'lisp
:type
'
(
choice
nil
integer
))
:type
'
(
choice
(
const
nil
)
integer
))
(
put
'lisp-body-indent
'safe-local-variable
(
lambda
(
x
)
(
or
(
null
x
)
(
integerp
x
))))
...
...
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