diff options
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/gdb-mi.el | 10 | ||||
| -rw-r--r-- | lisp/progmodes/idlwave.el | 18 | ||||
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
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. |
| 424 | When selecting the directories to scan for IDL user catalog routine | 424 | When selecting the directories to scan for IDL user catalog routine |
| 425 | info, IDLWAVE can, under UNIX, query the shell for the exact search | 425 | info, IDLWAVE can, under UNIX, query the shell for the exact search |
| 426 | path \(the value of !PATH). However, under Windows and MacOS | 426 | path (the value of !PATH). However, under MS-Windows, the |
| 427 | \(pre-OSX), the IDLWAVE shell does not work. In this case, this | 427 | IDLWAVE shell does not work. In this case, this variable can be |
| 428 | variable can be set to specify the paths where IDLWAVE can find PRO | 428 | set to specify the paths where IDLWAVE can find PRO files. The |
| 429 | files. The shell will only be asked for a list of paths when this | 429 | shell will only be asked for a list of paths when this variable |
| 430 | variable is nil. The value is a list of directories. A directory | 430 | is nil. The value is a list of directories. A directory |
| 431 | preceded by a `+' will be searched recursively. If you set this | 431 | preceded by a `+' will be searched recursively. If you set this |
| 432 | variable on a UNIX system, the shell will not be queried. See also | 432 | variable on a UNIX system, the shell will not be queried. See |
| 433 | `idlwave-system-directory'." | 433 | also `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 |
| 439 | UNIX. Set this to the value of the `!DIR' system variable in IDL. | 439 | UNIX. Set this to the value of the `!DIR' system variable in IDL. |
| 440 | IDLWAVE uses this to find out which of the library routines belong to | 440 | IDLWAVE uses this to find out which of the library routines belong to |
| 441 | the official system library. All files inside the `lib' subdirectory | 441 | the 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?" |