• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/

Lines Matching defs:default

59 ;; Jonathan Stigelman <stig@hackvan.com> gave patches for default
91 ;; The bookmark list is sorted lexically by default, but you can turn
125 `bookmark-default-file', which is `~/.emacs.bmk' by default."
130 (defconst bookmark-old-default-file "~/.emacs-bkmrks"
136 "Old name for `bookmark-default-file'.")
138 (defcustom bookmark-default-file
143 "*File in which to save bookmarks by default."
236 It is not bound to any key by default: to bind it
334 (bookmark-maybe-load-default-file)
459 (defun bookmark-completing-read (prompt &optional default)
465 (bookmark-maybe-load-default-file) ; paranoia
469 (default default)
470 (prompt (if default
471 (concat prompt (format " (%s): " default))
480 (if (string-equal "" str) default str))))
499 (bookmark-maybe-load-default-file)
765 (bookmark-maybe-load-default-file)
771 (let* ((default (or bookmark-current-bookmark
776 (format "Set bookmark (%s): " default)
783 (and (string-equal str "") (setq str default))
850 (defun bookmark-default-annotation-text (bookmark)
859 (defvar bookmark-read-annotation-text-func 'bookmark-default-annotation-text
860 "Function to return default text to use for a bookmark annotation.
1031 (defun bookmark-maybe-load-default-file ()
1038 (file-exists-p (expand-file-name bookmark-old-default-file))
1039 (not (file-exists-p (expand-file-name bookmark-default-file)))
1040 (rename-file (expand-file-name bookmark-old-default-file)
1041 (expand-file-name bookmark-default-file)))
1045 (file-readable-p (expand-file-name bookmark-default-file))
1046 (bookmark-load bookmark-default-file t t)
1117 (bookmark-maybe-load-default-file)
1177 (bookmark-maybe-load-default-file)
1212 (bookmark-maybe-load-default-file)
1231 (bookmark-maybe-load-default-file)
1264 (bookmark-maybe-load-default-file)
1288 (bookmark-maybe-load-default-file)
1326 (bookmark-maybe-load-default-file)
1333 Saves by default in the file defined by the variable
1334 `bookmark-default-file'. With a prefix arg, save it in file FILE
1338 FILE, and if you just want it to write to the default file, then
1346 `bookmark-default-file'."
1348 (bookmark-maybe-load-default-file)
1351 ;;whether interactive or not, write to default file
1352 (bookmark-write-file bookmark-default-file))
1450 bookmark-default-file)
1452 ;;but there's no better default, and
1454 "~/" bookmark-default-file 'confirm)))
1477 (expand-file-name bookmark-default-file)
1571 (bookmark-maybe-load-default-file)
1640 \\[bookmark-bmenu-save] -- save the current bookmark list in the default file.