Emacs Configuration Files Save Windows Path with Spaces

1 · · Aug. 25, 2021, midnight
save windows path with spaces (defun bounds-of-string-at-point () "String at point including the string delimiters." (when-let ((ppss (syntax-ppss)) (in-string (nth 3 ppss)) (b (nth 8 ppss)) (e-ppss (save-excursion (parse-partial-sexp (1+ b) (point-max) nil nil nil 'syntax-table))) (e (1+ (nth 8 e-ppss)))) (cons b e))) (put 'string 'bounds-of-thing-at-point #'bounds-of-string-at-point) (defun around-ad-ffap-string-at-point (oldfun &optional mode) "Use the string at point for `ffap-string-at-poi...