diff options
| author | Paul Eggert | 2016-05-02 10:46:53 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-05-02 10:46:53 -0700 |
| commit | 2bf7bc4161a3b3e1eceaf8422773de87ae233ea3 (patch) | |
| tree | d17e0d30b08dc696fa30cb3eec8673841eddef0a /lisp/progmodes | |
| parent | d05806fda1cbba2db112bc783597fbe9d27175b2 (diff) | |
| parent | bf21c84f0d3dab33b4836098b789eaddf9492b2a (diff) | |
| download | emacs-2bf7bc4161a3b3e1eceaf8422773de87ae233ea3.tar.gz emacs-2bf7bc4161a3b3e1eceaf8422773de87ae233ea3.zip | |
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 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/cc-engine.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/xref.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index 76a0b201816..d19d2dacda1 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el | |||
| @@ -3527,7 +3527,7 @@ comment at the start of cc-engine.el for more info." | |||
| 3527 | c-state-old-cpp-end | 3527 | c-state-old-cpp-end |
| 3528 | c-parse-state-point)))) | 3528 | c-parse-state-point)))) |
| 3529 | (defun c-replay-parse-state-state () | 3529 | (defun c-replay-parse-state-state () |
| 3530 | (message | 3530 | (message "%s" |
| 3531 | (concat "(setq " | 3531 | (concat "(setq " |
| 3532 | (mapconcat | 3532 | (mapconcat |
| 3533 | (lambda (arg) | 3533 | (lambda (arg) |
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index f674c70b104..b5632af13ab 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el | |||
| @@ -902,7 +902,7 @@ IGNORES is a list of glob patterns." | |||
| 902 | (match-string 1) | 902 | (match-string 1) |
| 903 | (buffer-substring-no-properties (point) (line-end-position))) | 903 | (buffer-substring-no-properties (point) (line-end-position))) |
| 904 | hits))) | 904 | hits))) |
| 905 | (xref--convert-hits hits regexp))) | 905 | (xref--convert-hits (nreverse hits) regexp))) |
| 906 | 906 | ||
| 907 | (defun xref--rgrep-command (regexp files dir ignores) | 907 | (defun xref--rgrep-command (regexp files dir ignores) |
| 908 | (require 'find-dired) ; for `find-name-arg' | 908 | (require 'find-dired) ; for `find-name-arg' |