Thanks for your help I'll look over that tommorrow Martyn ________________________________ From: emacs-nxml-mode@yahoogroups.com on behalf of Lennart Borgman ...
1001
wheeler_martyn
Jun 22, 2005 12:58 pm
Hi Again, I was wondering if anyone else had come across this problem with emacs v22.0.50 (win32): When I enter an xml document with global-font-lock inactive...
1002
Lennart Borgman
nlborgman
Jun 22, 2005 1:52 pm
... I have not seen this. Can you please explain more exact what is happening?...
1003
Wheeler, Dr M.D.
wheeler_martyn
Jun 22, 2005 2:00 pm
Hi again, maybe some screenshots will help (sorry about file sizes) If i load up a file in nxml-mode with global-font-lock disabled I get what i expect...
1004
Wheeler, Dr M.D.
wheeler_martyn
Jun 22, 2005 2:14 pm
if you don't get the attachments you can see the two screenshots here If i load up a file in nxml-mode with global-font-lock disabled I get what i expect: ...
1005
Lennart Borgman
nlborgman
Jun 22, 2005 2:31 pm
... I can't see this problem with nXML mode version 20041004. Is it the same version as you are using? Maybe you could put your xml-file on the web-site too?...
1006
Lennart Borgman
nlborgman
Jun 23, 2005 9:03 pm
I would like to know how to ask nxml-mode to reparse the buffer (without changing it). Is there anyone on the list who knows how to do this? Best wishes, ...
1007
Michael Smith
xmldoc
Jun 24, 2005 2:11 am
... Do C-c C-v (rng-validate-mode) twice, to toggle validation off and then back on again. --Mike...
1008
Lennart Borgman
nlborgman
Jun 24, 2005 9:09 am
Thanks Mike! It helped me realize that I was looking for the wrong thing. I was looking for a way to refontify the buffer and that was easy to find once I...
1009
wcustibh
Jun 28, 2005 2:09 pm
Take advantage of better interest rates, refinance now just like I did, it will save you lots of money each month. This service can help....
1010
Peter Heslin
peterjheslin
Jul 1, 2005 8:18 am
Easymacs is an easy-to-learn, one-size-fits-all configuration for new users of GNU Emacs. It sets up key bindings that conform to a common denominator of the...
1011
nvnsvrlrch
Jul 17, 2005 11:18 pm
Right now interest rates are lower then they have ever been. Save money each month. Save money the easy way, refinance your home now....
1012
pepeggg
Jul 23, 2005 10:24 am
I have started using nxml (and emacs for that matter) to do my docbook editing, after having tried several commercial products (why is it so difficult to...
1013
John W. Shipman
shipman507
Jul 23, 2005 5:56 pm
On Sat, 23 Jul 2005, pepeggg wrote: +-- ... +-- I'm a heavy user of nxml-emacs and this is probably the one thing from the old psgml-emacs package I miss the...
1014
eileenrand8
Jul 30, 2005 2:53 pm
As amazing as it may sound many people do not realize how easy it is to LEGALLY stop paying for their groceries! This is how the one hour television show began...
1015
arlenebryden
Aug 2, 2005 8:24 pm
I always remember my father saying that if it seems to good to be true it probably is. Well that is exactly what I thought about the program at...
1016
Lennart Borgman
nlborgman
Aug 3, 2005 11:13 pm
I have observed a strange thing during the last time. Whenever I open an XHMTL file to edit with nxml-mode it is already changed when I start. I can undo the...
1017
Josh Sled
joshsled
Aug 3, 2005 11:33 pm
... This is a very basic version of what you're after: (defun surround-region-with-tag (tag-name) (interactive "stag name: ") (save-excursion (goto-char...
1018
drkm
darkman_spam
Aug 4, 2005 2:14 am
... This works even in non-interactive and takes the 'tag-name39; length in account: (defun surround-region-with-tag (tag-name beg end) (interactive "sTag name:...
1019
drkm
darkman_spam
Aug 4, 2005 2:20 am
... Can you save the modified buffer (with 'C-x C-w' for example) and run 'diff(1)' on the two files? I guess some encoding issue. --drkm...
1020
Lennart Borgman
nlborgman
Aug 4, 2005 7:40 am
... Good suggestion. When I do that and compare with fc for example there is no difference (od+diff does not show any difference either). I wonder what is...
1021
drkm
darkman_spam
Aug 4, 2005 5:37 pm
... Can you run the following function in the buffer, to see the `buffer-undo-list' value? (defun drkm:display-undo-list () "Display the value of...
1022
DuCharme, Bob (LNG-CHO)
philregion
Aug 4, 2005 7:53 pm
It's already in my .emacs file, assigned to ^Cr, which is what I believe it was in PSGML. Thanks! Bob _____ From: emacs-nxml-mode@yahoogroups.com ...
1023
Lennart Borgman
nlborgman
Aug 5, 2005 12:41 pm
... Useful, that led me to the solution. The problem was in nxhtml.el, my own module. This is for XHTML files. It modifies href attributes and makes them...
1024
Lennart Borgman
nlborgman
Aug 5, 2005 1:08 pm
... And to anyone trying to do the same: * Avoid my problems and use (nxml-fontify-buffer) instead! That is on the correct level so to say and uses ...
1025
drkm
darkman_spam
Aug 5, 2005 2:05 pm
... Is this file available somewhere on the web? ... Yes, I was surprised more than once while modifying tprops by seeing that the modification state of the...
1026
Lennart Borgman
nlborgman
Aug 5, 2005 5:56 pm
... Just google for nxthml. It is mentioned on http://www.emacswiki.org/ and available at http://ourcomments.org/Emacs/Emacs.html ... It would be nice if Emacs...
1027
drkm
darkman_spam
Aug 5, 2005 7:03 pm
... Something like this can be useful in this case, IMHO: (defmacro save-undo-list (&rest body) `(let ((buffer-undo-list buffer-undo-list)) ,@body)) --drkm...
1028
Lennart Borgman
nlborgman
Aug 5, 2005 7:31 pm
... There is a much more elaborate macro in nxml-util.el: (defmacro nxml-with-unmodifying-text-property-changes (&rest body) ...) I can not say I understand...
1029
drkm
darkman_spam
Aug 5, 2005 8:02 pm
... It's not the same thing. The first inhibits adding to 'buffer-undo-list39;. The second inhibits setting the buffer modified flag to T if it was NIL before...