You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
;;; loc-changes-autoloads.el --- automatically extracted autoloads;;;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "loc-changes" "loc-changes.el" (0 0 0 0));;; Generated autoloads from loc-changes.el
(autoload 'loc-changes-goto-line "loc-changes" "\
Position `point' at LINE-NUMBER of the current buffer. IfCOLUMN-NUMBER is given, position `point' at that column justbefore that column number within the line. Note that the beginning ofthe line starts at column 0, so the column number display will be one lessthan COLUMN-NUMBER. For example COLUMN-NUMBER 1 will set before the firstcolumn on the line and show 0.
The Emacs `goto-line' docstring says it is the wrong to use thatfunction in a Lisp program. So here is something that I proclaimis okay to use in a Lisp program.
\(fn LINE-NUMBER &optional COLUMN-NUMBER)" t nil)
(autoload 'loc-changes-add-and-goto "loc-changes" "\
Add a marker at LINE-NUMBER and record LINE-NUMBER and itsmarker association in `loc-changes-alist'.
\(fn LINE-NUMBER &optional OPT-BUFFER)" t nil)
(autoload 'loc-changes-clear-buffer "loc-changes" "\
Remove all location-tracking associations in BUFFER.
\(fn &optional OPT-BUFFER)" t nil)
(autoload 'loc-changes-reset-position "loc-changes" "\
Update `loc-changes-alist' so that the line number of point isused to when aline number is requested.
Updates any existing line numbers referred to in marks at thisposition.
This may be useful for example in debugging if you save thebuffer and then cause the debugger to reread/reevaluate the fileso that its positions are will be reflected.
\(fn &optional OPT-BUFFER NO-INSERT)" t nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "loc-changes" '("loc-changes")))
;;;***;; Local Variables:;; version-control: never;; no-byte-compile: t;; no-update-autoloads: t;; coding: utf-8;; End:;;; loc-changes-autoloads.el ends here
|