aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorPaul Eggert2016-11-06 00:33:43 -0700
committerPaul Eggert2016-11-06 00:42:03 -0700
commitdc152c54f4e44f5f2040883b03f71ff6aa66c893 (patch)
tree7b4f0336a1f03e7a53d980000a42568b10907409 /lisp/progmodes
parent84c53436ab25b6c8f76c133e59b34e533ea33cc7 (diff)
downloademacs-dc152c54f4e44f5f2040883b03f71ff6aa66c893.tar.gz
emacs-dc152c54f4e44f5f2040883b03f71ff6aa66c893.zip
Modernize usage of 'macOS' in doc and comments
Apple changed the spelling of its operating system again, to "macOS", effective with macOS 10.12 Sierra (2016-09-20). Change Emacs documentation and comments to match this. Stick with older OS spellings ("OS X", "Mac OS X") when talking about older releases where the older names are more correct.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/gdb-mi.el10
-rw-r--r--lisp/progmodes/idlwave.el18
-rw-r--r--lisp/progmodes/python.el2
3 files changed, 15 insertions, 15 deletions
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el
index d243650d73a..978b81699fc 100644
--- a/lisp/progmodes/gdb-mi.el
+++ b/lisp/progmodes/gdb-mi.el
@@ -69,12 +69,12 @@
69;; 2) Use MinGW GDB instead. 69;; 2) Use MinGW GDB instead.
70;; 3) Use cygwin-mount.el 70;; 3) Use cygwin-mount.el
71 71
72;;; Mac OSX: 72;;; macOS:
73 73
74;; GDB in Emacs on Mac OSX works best with FSF GDB as Apple have made 74;; GDB in Emacs on macOS works best with FSF GDB as Apple have made
75;; some changes to the version that they include as part of Mac OSX. 75;; some changes to the version that they include as part of macOS.
76;; This requires GDB version 7.0 or later (estimated release date Aug 2009) 76;; This requires GDB version 7.0 or later as earlier versions do not
77;; as earlier versions do not compile on Mac OSX. 77;; compile on macOS.
78 78
79;;; Known Bugs: 79;;; Known Bugs:
80 80
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index 9cb2ca74063..bc607ac4019 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -420,22 +420,22 @@ A value of t means to show all source files."
420 :type 'integer) 420 :type 'integer)
421 421
422(defcustom idlwave-library-path nil 422(defcustom idlwave-library-path nil
423 "Library path for Windows and MacOS (OS9). Not needed under UNIX. 423 "Library path for Windows and Mac OS (OS9). Not needed under UNIX.
424When selecting the directories to scan for IDL user catalog routine 424When selecting the directories to scan for IDL user catalog routine
425info, IDLWAVE can, under UNIX, query the shell for the exact search 425info, IDLWAVE can, under UNIX, query the shell for the exact search
426path \(the value of !PATH). However, under Windows and MacOS 426path (the value of !PATH). However, under MS-Windows, the
427\(pre-OSX), the IDLWAVE shell does not work. In this case, this 427IDLWAVE shell does not work. In this case, this variable can be
428variable can be set to specify the paths where IDLWAVE can find PRO 428set to specify the paths where IDLWAVE can find PRO files. The
429files. The shell will only be asked for a list of paths when this 429shell will only be asked for a list of paths when this variable
430variable is nil. The value is a list of directories. A directory 430is nil. The value is a list of directories. A directory
431preceded by a `+' will be searched recursively. If you set this 431preceded by a `+' will be searched recursively. If you set this
432variable on a UNIX system, the shell will not be queried. See also 432variable on a UNIX system, the shell will not be queried. See
433`idlwave-system-directory'." 433also `idlwave-system-directory'."
434 :group 'idlwave-routine-info 434 :group 'idlwave-routine-info
435 :type '(repeat (directory))) 435 :type '(repeat (directory)))
436 436
437(defcustom idlwave-system-directory "" 437(defcustom idlwave-system-directory ""
438 "The IDL system directory for Windows and MacOS. Not needed under 438 "The IDL system directory for Windows and Mac OS. Not needed under
439UNIX. Set this to the value of the `!DIR' system variable in IDL. 439UNIX. Set this to the value of the `!DIR' system variable in IDL.
440IDLWAVE uses this to find out which of the library routines belong to 440IDLWAVE uses this to find out which of the library routines belong to
441the official system library. All files inside the `lib' subdirectory 441the official system library. All files inside the `lib' subdirectory
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 3fae3987b22..8ec9febe5c9 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -2414,7 +2414,7 @@ banner and the initial prompt are received separately."
2414(defun python-shell-comint-end-of-output-p (output) 2414(defun python-shell-comint-end-of-output-p (output)
2415 "Return non-nil if OUTPUT is ends with input prompt." 2415 "Return non-nil if OUTPUT is ends with input prompt."
2416 (string-match 2416 (string-match
2417 ;; XXX: It seems on OSX an extra carriage return is attached 2417 ;; XXX: It seems on macOS an extra carriage return is attached
2418 ;; at the end of output, this handles that too. 2418 ;; at the end of output, this handles that too.
2419 (concat 2419 (concat
2420 "\r?\n?" 2420 "\r?\n?"