mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-03 22:20:52 -08:00
* files.el (read-file-modes): Fix tpo in docstring.
This commit is contained in:
parent
20431da988
commit
094eabe407
2 changed files with 15 additions and 12 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -102,15 +102,15 @@ But it is local only if you make it local.")
|
|||
(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 @@ in order to initialize other data structure based on them.")
|
|||
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 @@ FROM (or 0 if nil) is the orginal modes of the file to be chmod'ed."
|
|||
(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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue