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
0b140219
Commit
0b140219
authored
Oct 16, 1997
by
Karl Heuer
Browse files
(format-deannotate-region): In case of unmatched tags,
avoid using nil where end position is expected.
parent
ac1f790a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/format.el
lisp/format.el
+1
-1
No files found.
lisp/format.el
View file @
0b140219
...
...
@@ -636,7 +636,7 @@ to write these unknown annotations back into the file."
;; Store as value of text-property `unknown'.
(
let
((
extents
top-extents
)
(
start
(
car
(
car
top-extents
)))
(
loc
(
cdr
(
car
top-extents
))))
(
loc
(
or
(
cdr
(
car
top-extents
))
loc
)
))
(
while
extents
(
setq
open-ans
(
cdr
open-ans
)
todo
(
cons
(
list
start
loc
'unknown
top-name
)
...
...
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