Personal emacs config
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.

60 lines
2.0 KiB

  1. ;;; loc-changes-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "loc-changes" "loc-changes.el" (0 0 0 0))
  7. ;;; Generated autoloads from loc-changes.el
  8. (autoload 'loc-changes-goto-line "loc-changes" "\
  9. Position `point' at LINE-NUMBER of the current buffer. If
  10. COLUMN-NUMBER is given, position `point' at that column just
  11. before that column number within the line. Note that the beginning of
  12. the line starts at column 0, so the column number display will be one less
  13. than COLUMN-NUMBER. For example COLUMN-NUMBER 1 will set before the first
  14. column on the line and show 0.
  15. The Emacs `goto-line' docstring says it is the wrong to use that
  16. function in a Lisp program. So here is something that I proclaim
  17. is okay to use in a Lisp program.
  18. \(fn LINE-NUMBER &optional COLUMN-NUMBER)" t nil)
  19. (autoload 'loc-changes-add-and-goto "loc-changes" "\
  20. Add a marker at LINE-NUMBER and record LINE-NUMBER and its
  21. marker association in `loc-changes-alist'.
  22. \(fn LINE-NUMBER &optional OPT-BUFFER)" t nil)
  23. (autoload 'loc-changes-clear-buffer "loc-changes" "\
  24. Remove all location-tracking associations in BUFFER.
  25. \(fn &optional OPT-BUFFER)" t nil)
  26. (autoload 'loc-changes-reset-position "loc-changes" "\
  27. Update `loc-changes-alist' so that the line number of point is
  28. used to when aline number is requested.
  29. Updates any existing line numbers referred to in marks at this
  30. position.
  31. This may be useful for example in debugging if you save the
  32. buffer and then cause the debugger to reread/reevaluate the file
  33. so that its positions are will be reflected.
  34. \(fn &optional OPT-BUFFER NO-INSERT)" t nil)
  35. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "loc-changes" '("loc-changes")))
  36. ;;;***
  37. ;; Local Variables:
  38. ;; version-control: never
  39. ;; no-byte-compile: t
  40. ;; no-update-autoloads: t
  41. ;; coding: utf-8
  42. ;; End:
  43. ;;; loc-changes-autoloads.el ends here