aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
Commit message (Collapse)AuthorAgeFilesLines
* (open-network-stream, open-network-stream-nowait)Richard M. Stallman2002-05-301-91/+0
| | | | | | | (open-network-stream-server, process-kill-without-query): Moved to subr.el. (byte-compiling-files-p): Function deleted.
* (open-network-stream-server): Pass on optional argsKim F. Storm2002-05-281-1/+2
| | | | sentinel and filter to make-network-process (from Luke Gorrie).
* (push-mark-command): Added optional NOMSG arg.Kim F. Storm2002-05-271-4/+6
|
* (yank-excluded-properties): Change :version attribute to a string.Markus Rost2002-05-201-1/+1
|
* Follow coding conventions.Pavel Janík2002-05-021-0/+3
|
* (clone-indirect-buffer-other-window): Fix a typo in `pop-up-window'.Eli Zaretskii2002-05-011-1/+1
|
* (yank-excluded-properties): Added help-echo to list.Kim F. Storm2002-04-291-1/+1
|
* (next-buffer, prev-buffer): New commands.Richard M. Stallman2002-04-271-3/+23
| | | | Bind C-x left and C-x right to them.
* (line-move-finish): Find beg and end of lineRichard M. Stallman2002-04-221-7/+20
| | | | | | before calling line-move-to-column. Do consider intangible when finding the end. Take more care in analyzing the results of intangibility after line-move-to-column.
* (yank-excluded-properties): New user option.Richard M. Stallman2002-04-191-14/+14
| | | | (yank-pop, yank): Use insert-for-yank.
* (pop-to-mark-command): Do not set this-command.Kim F. Storm2002-04-181-2/+5
| | | | (set-mark-command): Always jump to mark when called with arg.
* (pop-to-mark-command, push-mark-command): New commands.Kim F. Storm2002-04-141-22/+64
| | | | | | | | | | | | (set-mark-command): Use them. Enhanced functionality when command is repeated: - If first command set the mark (no prefix arg), repeat temporarily enables transient-mark-mode. - If first command jumped to mark off ring (with argument), repeat (with or without arg) jump to next mark off ring. - Use C-u C-u prefix to set mark after jump. (exchange-point-and-mark): Temporarily enable transient-mark-mode if prefix arg.
* (line-move): Use memq rather than or.Stefan Monnier2002-04-111-107/+68
| | | | | | (transpose-sexps): Don't presume as much of forward-sexp's behavior. (do-auto-fill): Use fill-move-to-break-point. (syntax-code-table): Remove.
* (play-sound): Move to subr.el.Pavel Janík2002-04-071-21/+0
|
* (play-sound): New function (uses play-sound-internal).Pavel Janík2002-04-051-0/+21
|
* (kill-new): Doc fix.Richard M. Stallman2002-03-311-1/+1
|
* (play-sound-file): Moved from subr.el, made unconditional.Richard M. Stallman2002-03-291-19/+32
|
* (line-move-to-column): Don't call move-to-column if COL=0.Richard M. Stallman2002-03-281-1/+3
|
* Fix typo.Pavel Janík2002-03-261-1/+1
|
* Test for network process support with featurep.Kim F. Storm2002-03-211-2/+2
|
* (open-network-stream-nowait): Use featurep.Kim F. Storm2002-03-211-2/+2
| | | | (open-network-stream-server): Ditto.
* Update copyright.Kim F. Storm2002-03-171-7/+90
| | | | | | | | | | | (clone-process): Use make-network-process to clone network processes. Get command list via (process-contact ... t). Use set-process-query-on-exit-flag and process-query-on-exit-flag instead of process-kill-without-query. (open-network-stream): Replaces C-version from process.c. (open-network-stream-nowait, open-network-stream-server): New functions. (process-kill-without-query): Replaces C-version from process.c.
* (shell-command-on-region): Call push-mark withEli Zaretskii2002-03-091-1/+1
| | | | non-nil second arg, to suppress the "Mark set" message.
* (shell-command-on-region): Report non-zero exitKim F. Storm2002-02-271-8/+5
| | | | status in mode line instead of buffer.
* (shell-command-on-region): Display the exit status when a command fails.Richard M. Stallman2002-02-201-7/+15
|
* * lisp/simple.el (mark-word): Mark more if repeated.Kai Großjohann2002-02-151-6/+15
| | | | | * lisp/textmodes/paragraphs.el (mark-paragraph): Ditto. (mark-end-of-sentence): Ditto.
* (undo-get-state, undo-revert-to-state): Fns deleted.Richard M. Stallman2002-02-061-33/+7
| | | | (transpose-subr-1): Use atomic-change-group.
* (shell-command-on-region): Err if no mark before reading the command string.Richard M. Stallman2002-02-011-7/+9
|
* (line-move): If we can't move enough lines, go to beginning or end of line.Richard M. Stallman2002-01-131-4/+16
|
* Whitespace change.Richard M. Stallman2002-01-111-1/+2
|
* (line-move-invisible): New subroutine.Richard M. Stallman2001-12-281-70/+90
| | | | | | | | | (line-move-to-column): New subroutine--smarter about advancing over invisible parts of a line, or lines, but only as long as hpos grows. (line-move-finish): New subroutine: repeatedly processes desired column, intangibility, and fields. (line-move): Use those subroutines. When moving lines downward, skip invisible text first rather than last.
* (eval-expression-print-level, eval-expression-print-length): Doc fixes.Richard M. Stallman2001-12-181-2/+2
|
* (newline): Doc fix.Dave Love2001-12-181-8/+14
| | | | | | | (eval-expression-print-level, eval-expression-print-length): Doc fix. Amend :type. (next-line, previous-line): Make arg optional. (newline): Doc fix.
* (undo): Always set this-command to `undo',Richard M. Stallman2001-12-131-15/+46
| | | | | | | | so that the next undo after an error will not begin redoing. (shell-command): Doc fix. (shell-command-on-region): If there is output an an error, add "...Shell command failed" to the output.
* (line-move): Cope if next-single-property-changeRichard M. Stallman2001-12-101-2/+4
| | | | or previous-single-property-change returns nil.
* (minibuffer-history-sexp-flag): Doc fix.Richard M. Stallman2001-11-171-1/+1
|
* (clone-indirect-buffer): Error if major mode symbolRichard M. Stallman2001-11-131-5/+17
| | | | | has a no-clone-indirect property. (clone-buffer): Check for obvious errors before reading clone name.
* (reindent-then-newline-and-indent): Insert the newlineStefan Monnier2001-10-311-113/+113
| | | | | | | | | | | | before indenting the first line. (undo-get-state, undo-revert-to-state): New funs. (shell-command): Don't kill the buffer even if empty. (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1) (transpose-subr-end2): Remove. (transpose-subr): Add `special' arg and simplify. (transpose-subr-1): Rewrite. (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p. (rfc822-goto-eoh): Simplify.
* Don't let kill-ring-save show extent if transient-mark-mode and regionKim F. Storm2001-10-191-1/+1
| | | | fully visible.
* (what-line): Avoid problems with field properties.Miles Bader2001-10-181-2/+2
|
* (display-message-or-buffer): Pass the correct buffer to `display-buffer'.Miles Bader2001-10-151-1/+2
|
* (minibuffer-local*-map): Remove redundant bindings.Stefan Monnier2001-10-121-30/+0
|
* (end-of-buffer): Fix code scrolling speciallyGerd Moellmann2001-10-101-1/+1
| | | | for the buffer end.
* (previous-matching-history-element): Fix misplaced parentheses.Miles Bader2001-10-051-2/+2
|
* (previous-matching-history-element, next-history-element)Miles Bader2001-10-051-31/+11
| | | | | | | | | next-complete-history-element): Use `minibuffer-' functions instead of calling `field-' functions directly. (minibuffer-prompt-end, minibuffer-contents): (minibuffer-contents-no-properties, delete-minibuffer-contents): Functions removed (now subrs). (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
* Comment out change of 2001-09-13.Gerd Moellmann2001-09-141-18/+18
|
* (minibuffer-prompt-modification)Gerd Moellmann2001-09-131-0/+22
| | | | | | (minibuffer-prompt-insertion): New functions. (minibuffer-prompt-properties): Use `modification-hooks' and `insert-in-front-hooks'.
* (undo): Remove positions from buffer-undo-list up toGerd Moellmann2001-09-061-7/+18
| | | | the next undo boundary only.
* (backward-word): Doc fix.Gerd Moellmann2001-09-041-1/+1
|
* (eval-expression-print-level): Fix last change.Gerd Moellmann2001-08-301-1/+1
|