Skip to content

Commit 3cbed6b

Browse files
author
ripley
committed
prepare for macOS 26
git-svn-id: https://svn.r-project.org/R/trunk@88258 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 79e5f45 commit 3cbed6b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/library/utils/R/sessionInfo.R

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,16 @@
7272
"16" = "Big Sur ...",
7373
""),
7474
ver)
75-
else if(ver1[1L] <= "15")
75+
else if(ver1[1L] <= "15" || ver1[1L] == "26")
7676
sprintf("macOS %s %s",
7777
switch(ver1[1L],
7878
"11" = "Big Sur",
7979
"12" = "Monterey",
8080
"13" = "Ventura",
8181
"14" = "Sonoma",
82-
"15" = "Sequoia"
83-
## if you add an entry here, change the <= above.
82+
"15" = "Sequoia",
83+
"26" = "Tahoe"
84+
## if you add an entry here, change the numeric raange above.
8485
),
8586
ver)
8687
else

0 commit comments

Comments
 (0)