Hi,
I'm trying to rework gnus-demon to use modern timer function. But it
seems that XEmacs has nothing like (current-idle-timer) Emacs has, and
run-with-idle-timer is not usable because it only run once by idle
session.
Any hint on the direction to take?
--
Julien Danjou
// ᐰ <julien(a)danjou.info> http://julien.danjou.info
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
Hello
I usually use mark-word quite often and I have bound it to a
key. Now repeating the key allows me to mark the following
word etc etc.
So I thought of defining my own mark-word-backwards:
The original code is:
(defun mark-word (&optional count)
"Mark the text from point until encountering the beginnin of a word.
With optional argument COUNT, mark COUNT words."
(interactive "p")
(mark-something 'mark-word 'forward-word count))
Which I modified to
(defun mark-word-back (&optional count)
"Mark the text from point until encountering the beginnin of a word.
With optional argument COUNT, mark COUNT words."
(interactive "p")
(mark-something 'mark-word 'backward-word count))
That works fine for marking one word backwards.
However when I bind this to a key and repeat it then it does
not repeat in the way mark-word does.
I presume the reason is how the function mark-something is
implemented or is there something I am missing?
Uwe Brauer
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
Hi -
Recent versions of gcc produce message like
cd /home/cgw/Work/
gcc -o inotify inotify.c
inotify.c: In function a^\200\230actiona^\200\231:
...
This looks like a unicode encoding of quotation marks -
it looks correct in a terminal, but not in the XEmacs
*compilation* buffer. What do I need to do to get
XEmacs to display this correctly?
- Charles
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/mailman/listinfo/xemacs-beta
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hey there everyone.
I have just added the following packages to the 'Pre-Releases'
directory:
New Packages in Pre-Release:
===========================
text-modes-2.00-pkg.tar.gz upstream version: none
Previously Announced Packages Still in Pre-Release:
==================================================
leim-1.32-pkg.tar.gz upstream version: none
x-symbol-1.13-pkg.tar.gz upstream version: 4.5.1
xemacs-base-2.29-pkg.tar.gz upstream version: none
Detailed Changes:
================
- ------- ChangeLog Entries from xemacs-packages/text-modes/ChangeLog -------
2010-10-19 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 2.00 released.
2010-10-19 Marcus Harnisch <marcus.harnisch(a)xemacs.org>
* htmlize.el (htmlize-buffer-1): Must setq plist after plist-put.
Installing These:
================
Manually:
- --------
1) Download the packages that you want to install from:
/ftp.xemacs.org:/pub/xemacs/beta/experimental/packages/
2) Unpack them to: [1]
/usr/local/lib/xemacs/xemacs-packages/
3) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.[245].x):
- ----------------------------------------------
1) Tools -> Packages -> Add Download Site -> Pre-Releases
2) Tools -> Packages -> List and Install
3) Select the packages you wish to install (there are brief
instructions at the bottom of the packages buffer).
4) Packages -> Install/Remove Selected
5) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.1.14):
- -------------------------------------------
1) Options -> Manage Packages -> Add Download Site -> Pre-Releases
2) Options -> Manage Packages -> List and Install
3 - 5) As per XEmacs 21.[245].x.
Footnotes:
[1] Note: Mule packages should be installed into:
/usr/local/lib/xemacs/mule-packages/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFMvfCNgu3ywdHdhM0RAg2kAJwOhXHfOQTPLokiLThDnPuyYmvUIACfW5xa
ZdbQTHrc3qdv9jyUtI0G+AU=
=Inrx
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
ACTIVITY SUMMARY (2010-10-12 - 2010-10-19)
XEmacs Issue Tracking System at http://tracker.xemacs.org/XEmacs/its/
To view or respond to any of the issues listed below, click on the issue
number. Do NOT respond to this message.
491 open ( +0) / 238 closed ( +0) / 729 total ( +0)
Open issues with patches: 11
Average duration of open issues: 693 days.
Median duration of open issues: 689 days.
Open Issues Breakdown
new 168 ( +0)
deferred 6 ( +0)
napping 4 ( +0)
verified 46 ( +0)
assigned 153 ( +0)
committed 25 ( +0)
documented 2 ( +0)
done/needs work 24 ( +0)
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta
On Sat, Oct 16, 2010 at 1:56 PM, Sirano Dhe-Paganon
<sirano.dhepaganon(a)utoronto.ca> wrote:
> ... it (and a few other variations that I tried) does not work on my
> machine. I found and tried the following, which did not do what it was
> supposed to do (scroll with different line steps depending on whether
> control or shift keys are also pressed). The simple scroll-up/down is bound
> to the wheel ok, but when control or shift is also pressed, nothing happens
> (it does not even scroll regularly).
> ;; scroll on wheel of mouses
> (if (not (boundp 'MULE))(if (featurep 'xemacs)
> (progn
> (define-key global-map 'button4 '(lambda (&rest
> args) (interactive) (let ((curwin (selected-window))) (select-window (car
> (mouse-pixel-position))) (scroll-down 5) (select-window curwin))))
> (define-key global-map [(shift button4)] '(lambda (&rest
> args) (interactive) (let ((curwin (selected-window))) (select-window (car
> (mouse-pixel-position))) (scroll-down 1) (select-window curwin))))
> (define-key global-map [(control button4)] '(lambda (&rest
> args) (interactive) (let ((curwin (selected-window))) (select-window (car
> (mouse-pixel-position))) (scroll-down) (select-window curwin))))
> (define-key global-map 'button5 '(lambda (&rest
> args) (interactive) (let ((curwin (selected-window))) (select-window (car
> (mouse-pixel-position))) (scroll-up 5) (select-window curwin))))
> (define-key global-map [(shift button5)] '(lambda (&rest
> args) (interactive) (let ((curwin (selected-window))) (select-window (car
> (mouse-pixel-position))) (scroll-up 1) (select-window curwin))))
> (define-key global-map [(control button5)] '(lambda (&rest
> args) (interactive) (let ((curwin (selected-window))) (select-window (car
> (mouse-pixel-position))) (scroll-up) (select-window curwin))))
> )))
Are you sure (boundp 'MULE) is returning nil? Also, what does
`describe-key' say when you attempt those actions? Here, with the
native win32 beta build (and without having run the code above), I get
stuff like:
C-button5up runs `mwheel-scroll'
`mwheel-scroll' is an interactive compiled Lisp function
-- loaded from "mwheel"
(mwheel-scroll EVENT)
Documentation:
not documented
Invoked with:
button4up
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta