bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#27697: #27254 patch


From: Eli Zaretskii
Subject: bug#27697: #27254 patch
Date: Sat, 22 Jul 2017 12:09:27 +0300

> From: vividsnow <vividsnow@gmail.com>
> Date: Sat, 15 Jul 2017 02:13:52 +0300
> 
> diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
> index c0f1aaf39d..c69eca2241 100644
> --- a/lisp/progmodes/cperl-mode.el
> +++ b/lisp/progmodes/cperl-mode.el
> @@ -3734,7 +3734,7 @@ the sections using `cperl-pod-head-face', 
> `cperl-pod-face',
>          "\\(\\`\n?\\|^\n\\)="        ; POD
>          "\\|"
>          ;; One extra () before this:
> -        "<<"                         ; HERE-DOC
> +        "<<~?"                       ; HERE-DOC
>          "\\("                        ; 1 + 1
>          ;; First variant "BLAH" or just ``.
>          "[ \t]*"                     ; Yes, whitespace is allowed!
> @@ -4000,7 +4000,7 @@ the sections using `cperl-pod-head-face', 
> `cperl-pod-face',
>                 (setq b (point))
>                 ;; We do not search to max, since we may be called from
>                 ;; some hook of fontification, and max is random
> -               (or (and (re-search-forward (concat "^" qtag "$")
> +               (or (and (re-search-forward (concat "^[ \t]*" qtag "$")
>                                             stop-point 'toend)
>                          ;;;(eq (following-char) ?\n) ; XXXX WHY???
>                          )

Thanks, pushed.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]