mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
; Fix two tests
* test/manual/cedet/semantic-tests.el (semanticdb-test-gnu-global): * test/src/undo-tests.el (undo-test0): Fix signaling an error. Suggested by Lin Sun <sunlin7@hotmail.com> in bug#81371.
This commit is contained in:
parent
924d88a736
commit
3e7908fe23
|
|
@ -100,7 +100,7 @@ global enabled."
|
|||
(condition-case err
|
||||
(semanticdb-enable-gnu-global-in-buffer)
|
||||
(error (if standardfile
|
||||
(error err)
|
||||
(signal err)
|
||||
(save-match-data
|
||||
(set-buffer (find-file-noselect semanticdb-test-gnu-global-startfile)))
|
||||
(semanticdb-enable-gnu-global-in-buffer))))
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@
|
|||
(error
|
||||
(unless (string= "No further undo information"
|
||||
(cadr err))
|
||||
(error err))))
|
||||
(signal err))))
|
||||
(undo-boundary)
|
||||
(insert "This")
|
||||
(undo-boundary)
|
||||
|
|
|
|||
Loading…
Reference in a new issue