Only Your friendly list mates can tell for sure
In some buffers of Python code and not others when I press the backspace key, it
tells me:
symbols function definition is void: looking-back.
I'm testing out on the latest branches of Python-mode and I'm trying to figure
out if this is something I'm doing wrong with xemacs or it is a bug.
What do I need to do to debug this?
--- eric
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
Just did an 'hg pull' and the following compile error would come up:
device-tty.c: In function 'tty_device_system_metrics':
device-tty.c:200: error: invalid operands to binary << (have 'double'
and 'int')
make[1]: *** [device-tty.o] Error 1
make[1]: Leaving directory `/home/tom/src/xemacs/src'
--
thomas
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
I committed a patch using patcher.el a couple of weeks ago. See
http://thread.gmane.org/gmane.emacs.xemacs.patches/12854
I wasn't able to push it then. I just merged it into my up to date
repository and tried to push it again, with no luck.
Has anything changed on hg.debian.org?
[jsparkes xemacs]$ hg push xemacs
pushing to ssh://jsparkes-guest@hg.debian.org//hg/xemacs/xemacs
searching for changes
remote: Not trusting file /hg/xemacs/xemacs/.hg/hgrc from untrusted user
sperber-guest, group xemacs
remote: Not trusting file /srv/hg.debian.org/hg/xemacs/xemacs/.hg/hgrc from
untrusted user sperber-guest, group xemacs
remote: abort: could not lock repository /hg/xemacs/xemacs: Permission
denied
abort: unexpected response: empty string
[jsparkes xemacs]$
--
Jeff Sparkes
jsparkes(a)gmail.com
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
The following message is a courtesy copy of an article
that has been posted to comp.emacs.xemacs as well.
xpost to xemacs-beta mailing list and comp.emacs.xemacs
when i edit latex sources, i'd like to have the running text in a
proportional font and everything else (macros, math, comments) in the
default, monospaced font
first i tried
(defun my-tex-font () (interactive)
(set-specifier (face-font (get-face 'default)) "Calibri-16" (current-buffer)))
but executing my-tex-font in a latex buffer caused ALL faces to get a
proportional font
being smart, i told me: "all those faces can be forced to inherit from
a common ancestor face, that i can force to have a mono font"
so i wrote
;;; init.el ;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defface font-latex-ancestor '((t)) "")
(defun my-tex-font ()
(set-specifier (face-font (get-face 'default)) "Calibri-16"
(current-buffer))
(set-specifier (face-font (get-face 'font-latex-ancestor))
"Consolas-16" (current-buffer)))
;;; custom.el ;;;;;;;;;;;;;;;;;;;;;;;;;; (one for each face)
;;; [...]
'(font-latex-math-face ((((class color) (background light))
(:foreground "SaddleBrown" :inherit font-latex-ancestor))))
;;; [...]
'(font-lock-comment-face ((((class color) (background light))
(:foreground "blue4" :inherit font-latex-ancestor))))
but now all my font-latex-* and font-lock-* faces have a black
foreground, in every buffer that is affected by font-lock
fontification
otoh, if i run the new my-tex-font in a latex buffer, the running text
is calibri and macros, comments, math etc is consolas, veery nice to
my eyes (i fear that your opinion may differ), but of course every
face is all black!
any help? thank you in advance,
g
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
Now that I have GNUS working with gmail, news.gmane.org, and
news.eternal-september.org, I've noticed an issue with getting new
mail and articles. When starting gnus, everything works as expected.
However, after being idle for some period, pressing "g" to get new
messages seems to hang for a long time. I end pressing Ctrl-g to let
it progress. Then I see messages about using ssl_connect.
I assume that the previous ssl connection has been dropped and xemacs
doesn't know when I press "g". The Ctrl-g does something to let
xemacs know.
Is it not possible for xemacs to detect this quicker? Or is this how
it's supposed to work?
Ray
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
Hi,
I guess this has been discussed before but I haven't been listening
carefully. The thing is that today I though I would bite the bullet
and try to merge in some GPLv3 or later code. To get the motivation
for the switch to GPLv3 or later up.
The code I was trying to use, and triggered this, was the go-mode
provided with the golang distribution. It depends on some stuff that
we don't have in XEmacs. From looking at the missing functions and
packages it doesn't seem to be all that hard to support it but...
...the likely place to put the missing functionality is in the
packages, such as xemacs-base. So it will not go into the core, (and
thus I fail in getting the motivation up, which is sad :-(, but except
for that...)
What to do here with the packages and GPLv3 or later code? Do we need
two versions of the packages? GPLv2 or later to go with 21.4 and GPLv3
or later to go with 21.5 and later? Or is it only an issue for
xemacs-base?
Yours
--
%% Mats
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
Hello
This is a bizarre problem.
Consider the function vc-register. I can call it
interactively or I can put it in the after-save-hook (just
for testing purposes)
(add-hook (make-local-variable 'after-save-hook) 'vc-register)
And it behaves as expected.
However I have a second function ensure-in-vc-or-check-in,
(see below)
that function should checkin or register the file, when
called interactively it behaves as expected.
When putting it in the above hook
(add-hook (make-local-variable 'after-save-hook) 'ensure-in-vc-or-check-in)
Then it behaves as expected concerning the checkin but when
it has to register a file the VC-log buffer for the initial
comment is not displayed! It is there but not displayed so
completing the register is cumbersome.
Anybody can explain this to me?
Thanks
Uwe Brauer
(defun ensure-in-vc-or-check-in ()
"Automatically checkin file ,v can be in the same directory or in the
subdirectory RCS. The idea is to call that function only for files
not for buffers. See the function ensure-in-vc-or-check-in-modes
which could be use in an apropriate HOOK."
(interactive)
(when (buffer-file-name)
(if (or (and (file-exists-p (format "%s,v" (buffer-file-name))))
(and (file-exists-p (format "RCS/%s,v" (file-name-nondirectory buffer-file-name)))))
(progn
(vc-checkin (buffer-file-name) nil "")
(vc-toggle-read-only)
(message "Checked in"))
(progn
(vc-register)))))
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
I've got pango displaying the strings from the output_string function in
redisplay-xlike-inc.c.
Pango wants utf-8 input. I have HAVE_XFT and MULE defined, so I'm getting
separate_textual_runs_xft_mule(), which is converting it into XftChar16,
which is probably UCS-2, not UTF-16?
There isn't even a Qucs_2 anywhere. There is a unicode_convert in
unicode.c, but I don't know how
to use it, and it involves Dynarrs.
I'm not even 100% sure what I'm asking for!
--
Jeff Sparkes
jsparkes(a)gmail.com
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta