Skip to content

Commit 09df73c

Browse files
committed
Merge branch 'master' of github.com:emacs-ess/ESS
2 parents 9f5cced + cf20fa0 commit 09df73c

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

lisp/ess-bugs-l.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ Users whose default is not \\='sh, but are accessing a remote machine with
6464
`telnet' or `ssh', should have the following in their init file:
6565
(setq-default ess-bugs-batch-method \\='sh)"
6666
:group 'ess-bugs
67-
:type '(choice (const sh :tag "Bourne/C-like Unix Shell")
68-
(const dos :tag "DOS-like Windows shell")))
67+
:type '(choice (const :tag "Bourne/C-like Unix Shell" sh)
68+
(const :tag "DOS-like Windows shell" dos)))
6969

7070
(defcustom ess-bugs-batch-post-command
7171
(if (equal ess-bugs-batch-method 'sh) "&" " ")

lisp/ess-help.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ nil otherwise."
714714
(save-excursion
715715
(goto-char (point-min))
716716
(while (search-forward "_" nil t)
717-
(backward-delete-char 2)
717+
(delete-char -2)
718718
(put-text-property (point) (1+ (point)) 'face 'underline))))
719719

720720
;;*;; Link to Info

lisp/ess-r-mode.el

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ Fetching happens once per new ESSR version. The archive is stored
7272
in ~/.config/ESSR/ESSRv[VERSION].rds file. You can download and
7373
place it there manually if the remote has restricted network
7474
access."
75-
:type '(choice (const nil :tag "Never")
76-
(const ess-remote :tag "With ess-remote only")
77-
(const t :tag "Always"))
75+
:type '(choice (const :tag "Never" nil)
76+
(const :tag "With ess-remote only" ess-remote)
77+
(const :tag "Always" t))
7878
:group 'ess-R)
7979

8080
;; Silence the byte compiler
@@ -573,7 +573,7 @@ blocking commands will throw an error.")
573573

574574
;;;###autoload
575575
(defun run-ess-r (&optional start-args)
576-
"Call 'R', the 'GNU S' system from the R Foundation.
576+
"Call \\='R\\=', the \\='GNU S\\=' system from the R Foundation.
577577
Optional prefix (\\[universal-argument]) allows to set command line arguments, such as
578578
--vsize. This should be OS agnostic.
579579
If you have certain command line arguments that should always be passed
@@ -2918,10 +2918,10 @@ needed."
29182918
(defun ess-rutils-html-docs (&optional remote)
29192919
"Use `browse-url' to navigate R html documentation.
29202920
Documentation is produced by a modified help.start(), that
2921-
returns the URL produced by GNU R's http server. If called with a
2921+
returns the URL produced by GNU R\\='s http server. If called with a
29222922
prefix, the modified help.start() is called with update=TRUE. The
29232923
optional REMOTE argument should be a string with a valid URL for
2924-
the 'R_HOME' directory on a remote server (defaults to NULL)."
2924+
the \\='R_HOME\\=' directory on a remote server (defaults to NULL)."
29252925
(interactive)
29262926
(let* ((update (if current-prefix-arg "update=TRUE" "update=FALSE"))
29272927
(remote (if (or (and remote (not (string= "" remote))))

lisp/ess-rdired.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
(defcustom ess-rdired-auto-update-interval 5
8989
"Seconds between refreshes of the `ess-rdired' buffer."
90-
:type '(choice (const nil :tag "No auto updates") (integer :tag "Seconds"))
90+
:type '(choice (const :tag "No auto updates" nil) (integer :tag "Seconds"))
9191
:group 'ess-R
9292
:package-version '(ess . "19.04"))
9393

lisp/ess-sas-d.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ indent line."
287287
(SAS)))
288288

289289
(defun SAS ()
290-
"Call 'SAS', from SAS Institute."
290+
"Call \\='SAS\\=', from SAS Institute."
291291
(interactive)
292292
(let* ((temp-dialect "SAS")) ;(cdr (rassoc ess-dialect SAS-customize-alist))))
293293
(ess-write-to-dribble-buffer

lisp/ess-tracebug.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -555,9 +555,9 @@ If \\='strip, remove all such instances. Otherwise, if non-nil, `+
555555
`ess-long+replacement'.
556556
This variable can be process-local but not buffer-local."
557557
:group 'ess-tracebug
558-
:type '(choice (const nil :tag "No replacement")
559-
(const strip :tag "Replace all")
560-
(const t :tag "Replace 3 or more +")))
558+
:type '(choice (const :tag "No replacement" nil)
559+
(const :tag "Replace all" strip)
560+
(const :tag "Replace 3 or more +" t)))
561561

562562
(defvar ess-long+replacement ". + "
563563
"Replacement used for long + prompt.

lisp/essd-els.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The default value is nil."
6262
"Variables to customize for S+elsewhere.")
6363

6464
(defun S+elsewhere (&optional _proc-name)
65-
"Call 'S-PLUS 3.x', the 'Real Thing' from StatSci."
65+
"Call \\='S-PLUS 3.x\\=', the \\='Real Thing\\=' from StatSci."
6666
;; git commit 104c4d7c56bc239ea245562763caa317bc3a1a84
6767
(declare (obsolete ess-remote "2000"))
6868
(ess-write-to-dribble-buffer

test/etest/etest.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ If RESET-STATE is non-nil, `last-command' and
295295
(with-current-buffer buf
296296
(goto-char (point-min))
297297
(when (search-forward "×" nil t)
298-
(backward-delete-char 1)
298+
(delete-char -1)
299299
(set-mark (point))
300300
(when (search-forward "×" nil t)
301301
(error "There can only be one mark cursor")))

0 commit comments

Comments
 (0)