comparison lisp/misc.el @ 659:505130d1ddf8

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 30 May 1992 22:12:04 +0000
parents 63b375f17a65
children 4f28bd14272c
comparison
equal deleted inserted replaced
658:7cbd4fcd8b0f 659:505130d1ddf8
1 ;; Basic editing commands for Emacs 1 ;;; misc.el --- basic editing commands for Emacs
2
2 ;; Copyright (C) 1989 Free Software Foundation, Inc. 3 ;; Copyright (C) 1989 Free Software Foundation, Inc.
3 4
4 ;; This file is part of GNU Emacs. 5 ;; This file is part of GNU Emacs.
5 6
6 ;; GNU Emacs is free software; you can redistribute it and/or modify 7 ;; GNU Emacs is free software; you can redistribute it and/or modify
47 (buffer-substring 48 (buffer-substring
48 (point) 49 (point)
49 (min (save-excursion (end-of-line) (point)) 50 (min (save-excursion (end-of-line) (point))
50 (+ n (point))))))) 51 (+ n (point)))))))
51 (insert string))) 52 (insert string)))
53
54 ;;; misc.el ends here