# HG changeset patch # User Juanma Barranquero # Date 1217540159 0 # Node ID d4e518422a972bef22d0017f00088944cf83b2ce # Parent 3b02590c0c0446aaf32a9e8fb2eb7389ce2eaa7c * files.el (read-file-modes): Fix tpo in docstring. diff -r 3b02590c0c04 -r d4e518422a97 lisp/ChangeLog --- 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 + + * files.el (read-file-modes): Fix tpo in docstring. + 2008-07-31 Chong Yidong - * 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 @@ -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 - * 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 diff -r 3b02590c0c04 -r d4e518422a97 lisp/files.el --- 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)