comparison lisp/cedet/ede/proj-elisp.el @ 111433:05dc9dca8729

Replace end-of-line, save-excursion etc with point-at-eol, point-at-bol. * lisp/mh-e/mh-seq.el (mh-read-msg-list): Use point-at-eol. * lisp/gnus/gnus-bookmark.el (gnus-bookmark-bmenu-show-infos) (gnus-bookmark-kill-line): Use point-at-eol. * lisp/cedet/ede/proj-elisp.el (ede-proj-flush-autoconf): Use point-at-bol. * lisp/emacs-lisp/chart.el (chart-zap-chars): * lisp/play/decipher.el (decipher-set-map): * lisp/progmodes/ada-mode.el (ada-get-current-indent) (ada-search-ignore-string-comment, ada-tab-hard, ada-untab-hard): * lisp/progmodes/ada-prj.el (ada-prj-load-from-file, ada-prj-display-help): * lisp/progmodes/ada-xref.el (ada-initialize-runtime-library) (ada-get-all-references): * lisp/progmodes/cperl-mode.el (cperl-electric-paren) (cperl-electric-rparen, cperl-electric-keyword, cperl-electric-else) (cperl-linefeed, cperl-sniff-for-indent, cperl-to-comment-or-eol) (cperl-find-pods-heres, cperl-indent-exp, cperl-fix-line-spacing) (cperl-word-at-point-hard): * lisp/progmodes/idlw-shell.el (idlwave-shell-move-or-history) (idlwave-shell-filename-string, idlwave-shell-batch-command) (idlwave-shell-display-line): * lisp/progmodes/idlwave.el (idlwave-show-begin, idlwave-fill-paragraph) (idlwave-calc-hanging-indent, idlwave-auto-fill, idlwave-template): * lisp/progmodes/js.el (js--re-search-forward-inner) (js--re-search-backward-inner): * lisp/progmodes/vhdl-mode.el (vhdl-align-region-1, vhdl-align-region-2) (vhdl-fix-clause, vhdl-compose-configuration-architecture): * lisp/progmodes/ruby-mode.el (ruby-parse-partial, eval-when-compile): * lisp/textmodes/flyspell.el (flyspell-process-localwords): * lisp/textmodes/ispell.el (ispell-buffer-local-parsing) (ispell-buffer-local-dict, ispell-buffer-local-words): Use point-at-bol and point-at-eol.
author Glenn Morris <rgm@gnu.org>
date Sat, 06 Nov 2010 18:36:33 -0700
parents f746433112ea
children 417b1e4d63cd
comparison
equal deleted inserted replaced
111432:8de1e4554e5e 111433:05dc9dca8729
1 ;;; ede-proj-elisp.el --- EDE Generic Project Emacs Lisp support 1 ;;; ede-proj-elisp.el --- EDE Generic Project Emacs Lisp support
2 2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
4 ;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4 ;; 2008, 2009, 2010 Free Software Foundation, Inc.
5 5
6 ;; Author: Eric M. Ludlam <zappo@gnu.org> 6 ;; Author: Eric M. Ludlam <zappo@gnu.org>
7 ;; Keywords: project, make 7 ;; Keywords: project, make
8 8
9 ;; This file is part of GNU Emacs. 9 ;; This file is part of GNU Emacs.
243 (while (re-search-forward "(cons \\([^ ]+\\) load-path)" 243 (while (re-search-forward "(cons \\([^ ]+\\) load-path)"
244 nil t) 244 nil t)
245 (let ((path (match-string 1))) 245 (let ((path (match-string 1)))
246 (if (string= path "nil") 246 (if (string= path "nil")
247 nil 247 nil
248 (delete-region (save-excursion (beginning-of-line) (point)) 248 (delete-region (point-at-bol) (point-at-bol 2)))))))))
249 (save-excursion (end-of-line)
250 (forward-char 1)
251 (point))))))))))
252 249
253 ;;; 250 ;;;
254 ;; Autoload generators 251 ;; Autoload generators
255 ;; 252 ;;
256 (defclass ede-proj-target-elisp-autoloads (ede-proj-target-elisp) 253 (defclass ede-proj-target-elisp-autoloads (ede-proj-target-elisp)