changeset 97181:d4e518422a97

* files.el (read-file-modes): Fix tpo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 31 Jul 2008 21:35:59 +0000
parents 3b02590c0c04
children ad5b18811831
files lisp/ChangeLog lisp/files.el
diffstat 2 files changed, 15 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Jul 31 21:09:05 2008 +0000
+++ b/lisp/ChangeLog	Thu Jul 31 21:35:59 2008 +0000
@@ -1,7 +1,11 @@
+2008-07-31  Juanma Barranquero  <lekktu@gmail.com>
+
+	* files.el (read-file-modes): Fix tpo in docstring.
+
 2008-07-31  Chong Yidong  <cyd@stupidchicken.com>
 
-	* minibuffer.el (read-file-name-completion-ignore-case): Add
-	cygwin to the list.
+	* minibuffer.el (read-file-name-completion-ignore-case):
+	Add cygwin to the list.
 
 2008-07-31  Sven Joachim  <svenjoac@gmx.de>
 
@@ -18,7 +22,7 @@
 	(dbus-return-values-table): New defvar.
 	(dbus-call-method-non-blocking-handler, dbus-event-message-type):
 	New defun.
-	(dbus-check-event, dbus-handle-event, dbus-event-serial-number, ):
+	(dbus-check-event, dbus-handle-event, dbus-event-serial-number):
 	Extend docstring.  Adapt implementation according to new
 	`dbus-event' layout.
 	(dbus-event-service-name, dbus-event-path-name)
@@ -26,8 +30,7 @@
 	implementation according to new `dbus-event' layout.
 	(dbus-set-property): Correct `dbus-introspect-get-attribute' call.
 
-	* net/xesam.el (xesam-type, xesam-query, xesam-xml-string): New
-	defvar.
+	* net/xesam.el (xesam-type, xesam-query, xesam-xml-string): New defvar.
 	(xesam-mode): Rework implementation.
 	(xesam-new-search): Additional parameter TYPE.
 	(xesam-search): Adapt call of `xesam-new-search'.
@@ -231,7 +234,7 @@
 
 2008-07-30  Wilson Snyder  <wsnyder@wsnyder.org>
 
-        * verilog-mode (verilog-read-decls): Allow AUTORESET to work with
+	* verilog-mode (verilog-read-decls): Allow AUTORESET to work with
 	SV 'logic' signals.  [Julian Gorfajn]
 	(verilog-auto-inst-column): Make verilog-auto-inst-column customizable.
 	(verilog-string-replace-matches): Avoid recursion with small
--- a/lisp/files.el	Thu Jul 31 21:09:05 2008 +0000
+++ b/lisp/files.el	Thu Jul 31 21:35:59 2008 +0000
@@ -102,15 +102,15 @@
 (defcustom backup-by-copying nil
  "Non-nil means always use copying to create backup files.
 See documentation of variable `make-backup-files'."
- :type 'boolean
- :group 'backup)
+  :type 'boolean
+  :group 'backup)
 
 (defcustom backup-by-copying-when-linked nil
  "Non-nil means use copying to create backups for files with multiple names.
 This causes the alternate names to refer to the latest version as edited.
 This variable is relevant only if `backup-by-copying' is nil."
- :type 'boolean
- :group 'backup)
+  :type 'boolean
+  :group 'backup)
 
 (defcustom backup-by-copying-when-mismatch nil
   "Non-nil means create backups by copying if this preserves owner or group.
@@ -2519,7 +2519,7 @@
 Each element is a cons cell (VAR . VAL), where VAR is a variable
 symbol and VAL is a value that is considered safe."
   :group 'find-file
-  :type  'alist)
+  :type 'alist)
 
 (defcustom safe-local-eval-forms '((add-hook 'write-file-hooks 'time-stamp))
   "Expressions that are considered safe in an `eval:' local variable.
@@ -5766,7 +5766,7 @@
 (defun read-file-modes (&optional prompt orig-file)
   "Read file modes in octal or symbolic notation.
 PROMPT is used as the prompt, default to `File modes (octal or symbolic): '.
-ORIG-FILE is the original file of which modes will be change."
+ORIG-FILE is the original file of which modes will be changed."
   (let* ((modes (or (if orig-file (file-modes orig-file) 0)
 		    (error "File not found")))
 	 (modestr (and (stringp orig-file)