all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* dired-do-copy
@ 2006-05-25 10:54 Andreas Roehler
  2006-05-25 12:12 ` dired-do-copy Peter Dyballa
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Andreas Roehler @ 2006-05-25 10:54 UTC (permalink / raw)


Trying `dired-do-copy' I get the following message:

"Symbol's value as variable is void: dired-recursive-copies"

However: this doesn't happen with emacs -q.

Any idea?

The evaluated form is

(defun dired-do-copy (&optional arg)
  "Copy all marked (or next ARG) files, or copy the current file.
..."
  (interactive "P")
  (let ((dired-recursive-copies dired-recursive-copies))
    (dired-do-create-files 'copy (function dired-copy-file)
                           "Copy"
                           arg dired-keep-marker-copy
                           nil dired-copy-how-to-fn))) 

Thanks

Andreas Roehler

__

In GNU Emacs 22.0.50.2 (i686-pc-linux-gnu, X toolkit, Xaw3d
scroll bars)
 of 2006-02-23 
X server distributor `The X.Org Foundation', version
11.0.60802000
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: de_DE.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: t

Major mode: Emacs-Lisp

Minor modes in effect:
  outline-minor-mode: t
  global-hi-lock-mode: t
  hi-lock-mode: t
  senator-minor-mode: t
  semantic-idle-summary-mode: t
  semantic-idle-scheduler-mode: t
  partial-completion-mode: t
  recentf-mode: t
  show-paren-mode: t
  tooltip-mode: t
  auto-compression-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  line-number-mode: t
  transient-mark-mode: t
  abbrev-mode: t

Recent input:
e x i t - r <tab> <return> q C-x C-f d i r e d - a 
u <tab> <return> M-x e v a l - b u <tab> <return> M-< 
M-x p u f f e r - l e s <tab> <return> M-> M-< M-x 
p u f f e r - a n - e <tab> <return> C-x d <return> 
M-x d i r e d - d o - c <tab> o <tab> p <tab> <return> 
SPC M-x r e p o r t - e m a c s - b u g <return>

Recent messages:
Edebug: dired-do-search
dired-do-search
Edebug: dired-do-query-replace-regexp
dired-do-query-replace-regexp
Edebug: dired-nondirectory-p
dired-nondirectory-p
Edebug: dired-show-file-type
dired-show-file-type
Symbol's value as variable is void: dired-recursive-copies
Loading emacsbug...done

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: dired-do-copy
  2006-05-25 10:54 dired-do-copy Andreas Roehler
@ 2006-05-25 12:12 ` Peter Dyballa
       [not found] ` <mailman.2276.1148559175.9609.help-gnu-emacs@gnu.org>
  2006-05-25 13:40 ` dired-do-copy Andreas Roehler
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Dyballa @ 2006-05-25 12:12 UTC (permalink / raw)
  Cc: help-gnu-emacs


Am 25.05.2006 um 12:54 schrieb Andreas Roehler:

> "Symbol's value as variable is void: dired-recursive-copies"
>
> However: this doesn't happen with emacs -q.
>
> Any idea?

It's obviously some setting in a site-specific file ... The  
*Messages* buffer should name the files loaded at start-up in which  
the setting could be found.

Did you make GNU Emacs 22.0.50 with 'make bootstrap?'

--
Mit friedvollen Grüßen

   Pete

"Isn't vi that text editor with two modes... one that beeps and one
that corrupts your file?" -- Dan Jacobson, on comp.os.linux.advocacy

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: dired-do-copy
       [not found] ` <mailman.2276.1148559175.9609.help-gnu-emacs@gnu.org>
@ 2006-05-25 12:54   ` Andreas Roehler
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas Roehler @ 2006-05-25 12:54 UTC (permalink / raw)


Peter Dyballa wrote:

> 
> Am 25.05.2006 um 12:54 schrieb Andreas Roehler:
> 
>> "Symbol's value as variable is void: dired-recursive-copies"
>>
>> However: this doesn't happen with emacs -q.
>>
>> Any idea?
> 
> It's obviously some setting in a site-specific file ... The
> *Messages* buffer should name the files loaded at start-up in
> which the setting could be found.
> 
> Did you make GNU Emacs 22.0.50 with 'make bootstrap?'
> 
> --
> Mit friedvollen Grüßen
> 
>    Pete
> 
> "Isn't vi that text editor with two modes... one that beeps and
> one that corrupts your file?" -- Dan Jacobson, on
> comp.os.linux.advocacy

Usually I run the CVS Emacs without any installation
straight from the source with

~/emacs/src/emacs -q --debug-init  --load ~/.gnu-emacs-cvs-custom
--load ~/.gnu-emacs-all-cvs &

i.e. specifying my own init scripts.

As it works with `~/emacs/src/emacs -q', can't imagine
that a not done `make bootstrap' might be the cause.
Should I be erroneous here, please send some more detailed
reasons.

As far as it concerns `dired' I have in 

~/.gnu-emacs-all-cvs

(dired "/home/speck/progarbeit/emacs")
(define-key dired-mode-map "\C-cc" 
'dired-mark-files-containing-regexp)

and in 

~/.gnu-emacs-cvs-custom

 '(dired-listing-switches "-lart")

Thanks

Andreas Roehler

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: dired-do-copy
  2006-05-25 10:54 dired-do-copy Andreas Roehler
  2006-05-25 12:12 ` dired-do-copy Peter Dyballa
       [not found] ` <mailman.2276.1148559175.9609.help-gnu-emacs@gnu.org>
@ 2006-05-25 13:40 ` Andreas Roehler
  2 siblings, 0 replies; 4+ messages in thread
From: Andreas Roehler @ 2006-05-25 13:40 UTC (permalink / raw)


Andreas Roehler wrote:

> Trying `dired-do-copy' I get the following message:
> 
> "Symbol's value as variable is void: dired-recursive-copies"
> 
Found:

Error was caused by a `dired.el' loaded from
http://www.emacswiki.org/emacs/elisp.tar.gz


Evaluation of this file stops at point

128733

(defalias 'dired-get-subdir-min 'cdr)

Thanks

Andreas Roehler

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-05-25 13:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-25 10:54 dired-do-copy Andreas Roehler
2006-05-25 12:12 ` dired-do-copy Peter Dyballa
     [not found] ` <mailman.2276.1148559175.9609.help-gnu-emacs@gnu.org>
2006-05-25 12:54   ` dired-do-copy Andreas Roehler
2006-05-25 13:40 ` dired-do-copy Andreas Roehler

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.