]> git.eshelyaron.com Git - emacs.git/commitdiff
(initial-buffer-choice): Change an abstract file name
authorJuri Linkov <juri@jurta.org>
Sat, 22 Nov 2008 20:45:09 +0000 (20:45 +0000)
committerJuri Linkov <juri@jurta.org>
Sat, 22 Nov 2008 20:45:09 +0000 (20:45 +0000)
"file.txt" to more reasonable default file name value "~/.emacs".

lisp/ChangeLog
lisp/startup.el

index 1f113e5d5e8f2ab6202a2192d5fc18a3b235261f..6c3c89b1d9e7e575132f78107a885f0900c67b14 100644 (file)
@@ -1,3 +1,30 @@
+2008-11-22  Juri Linkov  <juri@jurta.org>
+
+       * dired-aux.el (dired-isearch-filenames): Add new context-dependent
+       option `dwim'.  Change non-dwim option from `dired-filename' to `t'.
+       Doc fix.
+       (dired-isearch-filenames-setup): Run filename Isearch only when
+       dired-isearch-filenames is t or dired-isearch-filenames is `dwim'
+       and the text property `dired-filename' at point is non-nil.
+       In this case also set isearch-message-prefix-add to "filename ".
+       (dired-isearch-filenames-end): Set isearch-message-prefix-add to nil.
+       (dired-isearch-filenames, dired-isearch-filenames-regexp):
+       Don't let-bind isearch-message-prefix-add since this is done now
+       in dired-isearch-filenames-setup.
+
+       * isearch.el (isearch-mode): Change the order of calling
+       `isearch-update' and running the `isearch-mode-hook' to call
+       `isearch-update' with Isearch parameters set in this hook.
+
+       * progmodes/compile.el (compilation-auto-jump-to-first-error):
+       Fix docstring - change "during `compile'" to "during compilation".
+
+       * descr-text.el (describe-char-unidata-list): Move `old-name' to
+       be immediately after `name'.
+
+       * startup.el (initial-buffer-choice): Change an abstract file name
+       "file.txt" to more reasonable default file name value "~/.emacs".
+
 2008-11-22  Juri Linkov  <juri@jurta.org>
 
        * files.el (hack-local-variables-confirm): Rename arg `project' to
index 253ac887fe7a22aedae280ca56863fa209571b87..f328a9145848554130a1a95b1f92e905c14e130c 100644 (file)
@@ -47,7 +47,7 @@ directory using `find-file'.  If t, open the `*scratch*' buffer."
   :type '(choice
          (const     :tag "Startup screen" nil)
          (directory :tag "Directory" :value "~/")
-         (file      :tag "File" :value "~/file.txt")
+         (file      :tag "File" :value "~/.emacs")
          (const     :tag "Lisp scratch buffer" t))
   :version "23.1"
   :group 'initialization)