diff options
author | Glenn Morris <rgm@gnu.org> | 2014-01-26 18:02:28 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-01-26 18:02:28 -0800 |
commit | ece4bae50f6ca8d03d076aa33eedd014a3af8c41 (patch) | |
tree | 66910ffa712f0643475284089989667641d1d5d2 /lisp/strokes.el | |
parent | 6ea71a445d523ff95a2cd6ae0cbde8bd7ca8d878 (diff) | |
download | emacs-ece4bae50f6ca8d03d076aa33eedd014a3af8c41.tar.gz emacs-ece4bae50f6ca8d03d076aa33eedd014a3af8c41.tar.bz2 emacs-ece4bae50f6ca8d03d076aa33eedd014a3af8c41.zip |
Doc, comment, etc updates for increased use of locate-user-emacs-file
This should have been a prerequisite for making these changes in the
first place.
* doc/emacs/calendar.texi (Time Intervals):
* doc/misc/idlwave.texi (Lesson III---User Catalog, Online Help)
(Starting the Shell, Catalogs, User Catalog):
* doc/misc/remember.texi (Quick Start):
* doc/misc/viper.texi:
* doc/misc/vip.texi (Customization, Customizing Constants)
(Customizing Key Bindings): Update for files being in ~/.emacs.d/.
* lisp/ido.el (ido-save-directory-list-file):
* lisp/saveplace.el (save-place-file):
* lisp/calendar/timeclock.el (timeclock-file):
* lisp/net/quickurl.el (quickurl-url-file):
* lisp/obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
* lisp/progmodes/idlwave.el (idlwave-config-directory):
* lisp/textmodes/remember.el (remember-data-file):
Bump :version.
* lisp/shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
* lisp/strokes.el (strokes-file): Doc fix. Bump :version.
(strokes-help): Doc fix.
* lisp/emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
* lisp/emulation/viper.el (viper): Doc fix for custom group.
(top-level): Remove oh-so-no-longer-relevant text about vip.
* lisp/obsolete/otodo-mode.el (todo-prefix): Doc fix.
* etc/NEWS: Related edits.
Diffstat (limited to 'lisp/strokes.el')
-rw-r--r-- | lisp/strokes.el | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lisp/strokes.el b/lisp/strokes.el index 890c3d0726c..35136e5da65 100644 --- a/lisp/strokes.el +++ b/lisp/strokes.el @@ -118,8 +118,7 @@ ;; > M-x strokes-prompt-user-save-strokes -;; and it will save your strokes in ~/.strokes, or you may wish to change -;; this by setting the variable `strokes-file'. +;; and it will save your strokes in your `strokes-file'. ;; Note that internally, all of the routines that are part of this ;; package are able to deal with complex strokes, as they are a superset @@ -261,7 +260,8 @@ WARNING: Changing the value of this variable will gravely affect the :group 'strokes) (defcustom strokes-file (locate-user-emacs-file "strokes" ".strokes") - "File containing saved strokes for Strokes mode (default is ~/.strokes)." + "File containing saved strokes for Strokes mode." + :version "24.4" ; added locate-user-emacs-file :type 'file :group 'strokes) @@ -991,11 +991,10 @@ down, then use a prefix argument: > C-u M-x strokes-list-strokes -Your strokes are stored as you enter them. They get saved in a file -called ~/.strokes, along with other strokes configuration variables. -You can change this location by setting the variable `strokes-file'. -You will be prompted to save them when you exit Emacs, or you can save -them with +Your strokes are stored as you enter them. They get saved into the +file specified by the `strokes-file' variable, along with other strokes +configuration variables. You will be prompted to save them when +you exit Emacs, or you can save them with > M-x strokes-prompt-user-save-strokes |