summaryrefslogtreecommitdiff
path: root/test/lisp
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-05-02 10:46:53 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-05-02 10:46:53 -0700
commit2bf7bc4161a3b3e1eceaf8422773de87ae233ea3 (patch)
treed17e0d30b08dc696fa30cb3eec8673841eddef0a /test/lisp
parentd05806fda1cbba2db112bc783597fbe9d27175b2 (diff)
parentbf21c84f0d3dab33b4836098b789eaddf9492b2a (diff)
downloademacs-2bf7bc4161a3b3e1eceaf8422773de87ae233ea3.tar.gz
Merge from origin/emacs-25
bf21c84 Fix quoting problem in cc-engine debug message 8f36614 Add electric-quote-string unit test 6280531 Don’t electrically quote ‘'’ in Python fd7b430 `nreverse' Grep hits before passing them to xref--convert-hits
Diffstat (limited to 'test/lisp')
-rw-r--r--test/lisp/electric-tests.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/lisp/electric-tests.el b/test/lisp/electric-tests.el
index 107b2e79fb6..afd707667b8 100644
--- a/test/lisp/electric-tests.el
+++ b/test/lisp/electric-tests.el
@@ -584,5 +584,13 @@ baz\"\""
(skip-chars-backward "\"")
(mark-sexp -1)))
+
+;;; Electric quotes
+(define-electric-pair-test electric-quote-string
+ "" "'" :expected-string "'" :expected-point 2
+ :fixture-fn #'electric-quote-local-mode
+ :bindings '((electric-quote-string . t))
+ :test-in-comments nil :test-in-strings nil)
+
(provide 'electric-tests)
;;; electric-tests.el ends here