> On 5 Jun 2019, at 14:57, Robert Weiner <[email protected]> wrote:
> 
> Try this fix and report back:
> 
> Change old line "hpath.el:1045":
>   (let ((remote-path (string-match "@.+:\\|^/.+:\\|..+:/" path)))
> 
> To new line "hpath.el:1045":
>   (let ((remote-path (string-match
> "\\(@.+:\\|^/.+:\\|..+:/\\).*[^:0-9/]" path)))
> 
> Re-evaluate that function and re-byte-compile the file.

Thanks Bob,

After applying the above change/re-eval/re-compile the 'Assist Key' doesn't 
display documentation.

The 'Action Key' causes a newline break to a new bulleted item in Org Mode.

I use 27, 26.2 Emacs at the same time.

Details are as follows...

--8<---------------cut here---------------start------------->8---
- "/i/src/sys/kern/kern_sig.c:127"
: "/i/src/sys/kern/kern_sig.c:127"
:  "\\(@.+:\\|^/.+:\\|..+:/\\).*[^:0-9/]" ; newly given pattern
:  "\\(@.+:\\|^/.+:\\|..+:/\\).*[^:0-9/]" ; newly given pattern as used

#+name: hpath.el
#+begin_src emacs-lisp -n 1045
             (let ((remote-path (string-match 
"\\(@.+:\\|^/.+:\\|..+:/\\).*[^:0-9/]" path)))
#+end_src

;; Local Variables:
;; mode: org
;; End:
--8<---------------cut here---------------end--------------->8---


Reply via email to