diff options
| -rw-r--r-- | lisp/nxml/rng-cmpct.el | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lisp/nxml/rng-cmpct.el b/lisp/nxml/rng-cmpct.el index a699e9e3d96..ed88dfa98e9 100644 --- a/lisp/nxml/rng-cmpct.el +++ b/lisp/nxml/rng-cmpct.el | |||
| @@ -674,13 +674,7 @@ the primary expression." | |||
| 674 | (substring rng-c-current-token n (- n))))) | 674 | (substring rng-c-current-token n (- n))))) |
| 675 | 675 | ||
| 676 | (defun rng-c-fix-escaped-newlines (str) | 676 | (defun rng-c-fix-escaped-newlines (str) |
| 677 | (let ((pos 0)) | 677 | (subst-char-in-string ?\C-@ ?\n str)) |
| 678 | (while (progn | ||
| 679 | (let ((n (string-match "\C-@" str pos))) | ||
| 680 | (and n | ||
| 681 | (aset str n ?\n) | ||
| 682 | (setq pos (1+ n))))))) | ||
| 683 | str) | ||
| 684 | 678 | ||
| 685 | (defun rng-c-parse-identifier-or-keyword () | 679 | (defun rng-c-parse-identifier-or-keyword () |
| 686 | (cond ((rng-c-current-token-ncname-p) | 680 | (cond ((rng-c-current-token-ncname-p) |