diff options
| author | Fabián Ezequiel Gallina | 2014-12-27 13:15:55 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2014-12-27 13:15:55 -0300 |
| commit | 3a12f2ed99734eff668f83f630c7108000e0b399 (patch) | |
| tree | d00367f58fbe82773b1f45771df827d22f83d939 /test | |
| parent | 6d14e0d361cfb3589874fe1b559e30b4fd3eb284 (diff) | |
| parent | 2616307f5c517124715b4d20bdd23c6c70366ac9 (diff) | |
| download | emacs-3a12f2ed99734eff668f83f630c7108000e0b399.tar.gz emacs-3a12f2ed99734eff668f83f630c7108000e0b399.zip | |
Merge from origin/emacs-24
2616307 * net/tramp-sh.el (tramp-send-command-and-read): New optional arg MARKER. (tramp-get-remote-path): Use it.
c773edc * net/tramp-gw.el (tramp-gw-open-connection): Suppress traces in wrong debug buffer. (tramp-gw-open-connection): Set process coding system 'binary. (tramp-gw-open-network-stream): Handle HTTP error 403.
8032fc1 * .gitignore: Ignore /conftest*.
fb420e7 * lisp/subr.el (sit-for): Tweak docstring.
061db13 Fix vc-git-dir-status-files WRT up-to-date vs edited
bb57c94 Consider electric-pair-mode in tex-mode.
7b94572 * test/automated/flymake/warnpred/test.pl: Tweak earlier change.
59c218f ChangeLog fix
db2a768 * test/automated/flymake/warnpred/test.pl: Tweak format
d9005dd src/gnutls.c (gnutls_init): Fix deprecation warning from GCC.
Conflicts:
ChangeLog
lisp/ChangeLog
src/ChangeLog
test/ChangeLog
Diffstat (limited to 'test')
| -rw-r--r-- | test/ChangeLog | 11 | ||||
| -rw-r--r-- | test/automated/data/flymake/test.pl | 2 | ||||
| -rw-r--r-- | test/automated/electric-tests.el | 11 |
3 files changed, 22 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index fda30d9237c..4e59ee0afbf 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2014-12-27 João Távora <joaotavora@gmail.com> | ||
| 2 | |||
| 3 | * automated/electric-tests.el (autowrapping-7): Tests for | ||
| 4 | tex-mode. | ||
| 5 | |||
| 6 | 2014-12-27 Glenn Morris <rgm@gnu.org> | ||
| 7 | |||
| 8 | * automated/flymake/warnpred/test.pl: Tweak format, since the | ||
| 9 | previous one seems to have stopped giving a warning with perl 5.20.1. | ||
| 10 | |||
| 11 | 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org> | ||
| 1 | 2014-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org> | 12 | 2014-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org> |
| 2 | 13 | ||
| 3 | * automated/python-tests.el (python-shell-get-process-name-1) | 14 | * automated/python-tests.el (python-shell-get-process-name-1) |
diff --git a/test/automated/data/flymake/test.pl b/test/automated/data/flymake/test.pl index 2013b2e4434..d5abcb47e7f 100644 --- a/test/automated/data/flymake/test.pl +++ b/test/automated/data/flymake/test.pl | |||
| @@ -1,2 +1,2 @@ | |||
| 1 | @arr = [1,2,3,4]; | 1 | @arr = [1,2,3,4]; |
| 2 | @arr[1] = -1; | 2 | my $b = @arr[1]; |
diff --git a/test/automated/electric-tests.el b/test/automated/electric-tests.el index b1908e6bb32..cd07213bf20 100644 --- a/test/automated/electric-tests.el +++ b/test/automated/electric-tests.el | |||
| @@ -60,7 +60,7 @@ | |||
| 60 | (cl-progv | 60 | (cl-progv |
| 61 | (mapcar #'car bindings) | 61 | (mapcar #'car bindings) |
| 62 | (mapcar #'cdr bindings) | 62 | (mapcar #'cdr bindings) |
| 63 | (self-insert-command 1)))) | 63 | (call-interactively (key-binding `[,last-command-event]))))) |
| 64 | (should (equal (buffer-substring-no-properties (point-min) (point-max)) | 64 | (should (equal (buffer-substring-no-properties (point-min) (point-max)) |
| 65 | expected-string)) | 65 | expected-string)) |
| 66 | (should (equal (point) | 66 | (should (equal (point) |
| @@ -575,5 +575,14 @@ baz\"\"" | |||
| 575 | (skip-chars-backward "\"") | 575 | (skip-chars-backward "\"") |
| 576 | (mark-sexp -1))) | 576 | (mark-sexp -1))) |
| 577 | 577 | ||
| 578 | (define-electric-pair-test autowrapping-7 | ||
| 579 | "foo" "\"" :expected-string "``foo''" :expected-point 8 | ||
| 580 | :modes '(tex-mode) | ||
| 581 | :fixture-fn #'(lambda () | ||
| 582 | (electric-pair-mode 1) | ||
| 583 | (goto-char (point-max)) | ||
| 584 | (skip-chars-backward "\"") | ||
| 585 | (mark-sexp -1))) | ||
| 586 | |||
| 578 | (provide 'electric-tests) | 587 | (provide 'electric-tests) |
| 579 | ;;; electric-tests.el ends here | 588 | ;;; electric-tests.el ends here |