comparison lisp/progmodes/compile.el @ 75145:72242573ed99

(compile): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Jan 2007 03:12:53 +0000
parents e56f52b00e2d
children 4f425a488281
comparison
equal deleted inserted replaced
75144:47e0e78110ed 75145:72242573ed99
874 (defun compile (command &optional comint) 874 (defun compile (command &optional comint)
875 "Compile the program including the current buffer. Default: run `make'. 875 "Compile the program including the current buffer. Default: run `make'.
876 Runs COMMAND, a shell command, in a separate process asynchronously 876 Runs COMMAND, a shell command, in a separate process asynchronously
877 with output going to the buffer `*compilation*'. 877 with output going to the buffer `*compilation*'.
878 878
879 You can then use the command \\[next-error] to find the next error message
880 and move to the source code that caused it.
881
879 If optional second arg COMINT is t the buffer will be in Comint mode with 882 If optional second arg COMINT is t the buffer will be in Comint mode with
880 `compilation-shell-minor-mode'. 883 `compilation-shell-minor-mode'.
881
882 You can then use the command \\[next-error] to find the next error message
883 and move to the source code that caused it.
884 884
885 Interactively, prompts for the command if `compilation-read-command' is 885 Interactively, prompts for the command if `compilation-read-command' is
886 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts. 886 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
887 Additionally, with universal prefix arg, compilation buffer will be in 887 Additionally, with universal prefix arg, compilation buffer will be in
888 comint mode, i.e. interactive. 888 comint mode, i.e. interactive.