@@ -839,8 +839,8 @@ Returns either Name, a string, or a (Name . Path) cons, such as
839839(\" R-2.12.1-64bit\" . \" C:/Program Files/R/R-2.12.1/bin/x64/Rterm.exe\" )
840840
841841\" R-x.y.z/bin/Rterm.exe\" will return \" R-x.y.z\" , for R-2.11.x and older.
842- \" R-x.y.z/bin/i386/Rterm.exe\" will return \" R-x.y.z-32bit\" , for R-2.12.x and newer.
843- \" R-x.y.z/bin/x64/Rterm.exe\" will return \" R-x.y.z-64bit\" , for R-2.12.x and newer."
842+ \" R-x.y.z/bin/i386/Rterm.exe\" return \" R-x.y.z-32bit\" , for R-2.12.x and newer.
843+ \" R-x.y.z/bin/x64/Rterm.exe\" return \" R-x.y.z-64bit\" , for R-2.12.x and newer."
844844 (let* ((dir (directory-file-name (file-name-directory long-path)))
845845 (dir2 (directory-file-name (file-name-directory dir)))
846846 (v-1up (file-name-nondirectory dir)); ; one level up
@@ -896,7 +896,8 @@ as `ess-r-created-runners' upon ESS initialization."
896896
897897(defun ess-r-redefine-runners (&optional verbose )
898898 " Regenerate runners, i.e. `M-x R-*` possibilities.
899- Call `fmakunbound' on all elements of `ess-r-created-runners' , then define new runners."
899+ Call `fmakunbound' on all elements of `ess-r-created-runners' ,
900+ then define new runners."
900901 (interactive " P" )
901902 (dolist (f ess-r-created-runners)
902903 (fmakunbound (intern f)))
@@ -2112,14 +2113,12 @@ Returns nil if line starts inside a string, t if in a comment."
21122113; ; Unroll arguments to a single line until closing marker is found.
21132114(defun ess-fill--unroll-lines (bounds &optional jump-cont )
21142115 (let* ((last-pos (point-min ))
2115- (containing-sexp (ess-containing-sexp-position))
2116- prefix-break)
2116+ (containing-sexp (ess-containing-sexp-position)))
21172117 (goto-char (car bounds))
21182118 (goto-char (ess-code-end-position))
21192119 (while (and (/= (point ) last-pos)
21202120 (< (line-end-position )
2121- (cadr bounds))
2122- (not prefix-break))
2121+ (cadr bounds)))
21232122 (setq last-pos (point ))
21242123 ; ; Check whether we ended up in a sub call. In this case, jump
21252124 ; ; over it, otherwise, join lines.
@@ -2415,8 +2414,8 @@ state.")
24152414 (setq comint-get-old-input #'inferior-ess-get-old-input )
24162415 (add-hook 'comint-input-filter-functions 'ess-search-path-tracker nil 'local ))
24172416
2418-
24192417
2418+
24202419; ;;*;;; R Help mode
24212420
24222421(defvar ess-r-help-mode-map
0 commit comments