Re: [h-e-w] 23.1.50; Dead keys

2018-06-04 Thread Angelo Borsotti
the old behavior (according to the changes you sent me, hopefully), but they do not produce the old behavior. -Angelo On 4 June 2018 at 17:45, Eli Zaretskii wrote: > > From: Angelo Borsotti > > Date: Mon, 4 Jun 2018 09:16:07 +0200 > > > > Why private email? > >

Errs structures in states

2014-02-19 Thread Angelo Borsotti
, it seems that such errs structures have no effect: the parse tables are the same as if the errs structures did non exist. If that is the case, then they could be removed. Is this correct? Thank you -Angelo Borsotti

Re: [Ubuntu-x-swat] [Bug 888487] Re: Default video card driver broken

2014-01-08 Thread Angelo Borsotti
Hi Christopher, this is no longer a bug. Thank you -Angelo Borsotti On 9 January 2014 03:40, Christopher M. Penalver christopher.m.penal...@gmail.com wrote: Angelo Borsotti, this bug was reported a while ago and there hasn't been any activity in it recently. We were wondering

Re: [Desktop-packages] [Bug 888487] Re: Default video card driver broken

2014-01-08 Thread Angelo Borsotti
Hi Christopher, this is no longer a bug. Thank you -Angelo Borsotti On 9 January 2014 03:40, Christopher M. Penalver christopher.m.penal...@gmail.com wrote: Angelo Borsotti, this bug was reported a while ago and there hasn't been any activity in it recently. We were wondering

Re: [Bug 888487] Re: Default video card driver broken

2014-01-08 Thread Angelo Borsotti
Hi Christopher, this is no longer a bug. Thank you -Angelo Borsotti On 9 January 2014 03:40, Christopher M. Penalver christopher.m.penal...@gmail.com wrote: Angelo Borsotti, this bug was reported a while ago and there hasn't been any activity in it recently. We were wondering

Re: git bash does not access drive f:

2012-11-23 Thread Angelo Borsotti
with git bash (even if bash could access them using what is passed to it, which is a drive letter, and not the drive name). Thank you -Angelo On 23 November 2012 16:31, Heiko Voigt hvo...@hvoigt.net wrote: Hi, On Thu, Nov 22, 2012 at 08:07:55AM +0100, Angelo Borsotti wrote: I have attached

Re: [Bug 454722] Re: inotify does not watch /proc

2012-11-17 Thread Angelo Borsotti
Hi Joseph it is a bit sad to spend time to isolate a bug, file it, provide all the additional data asked, see it confirmed and then see that it has been dropped because bug fixing has taken so much time as to make the OS release obsolete. Anyway, knowing that bugs that are not resolved in one

Re: push branch descriptions

2012-11-14 Thread Angelo Borsotti
when the HEAD is not set ...). -Angelo On 14 November 2012 14:57, Junio C Hamano gits...@pobox.com wrote: Angelo Borsotti angelo.borso...@gmail.com writes: currently, there is no means to push a branch description to a remote repository. It is possible to create a branch, but not to set its

Re: [PATCH v3 0/5] push: update remote tags only with force

2012-11-14 Thread Angelo Borsotti
Hi Junio, actually, I proposed to add a key in config files, e.g. pushTagsNoChange to be set in the remote repo do disallow changes to tags, similar to pushNonFastForward that disallows non-fastforward changes to branches. I still have the impression that this is simple and clear, and allows the

Re: [PATCH v3 0/5] push: update remote tags only with force

2012-11-14 Thread Angelo Borsotti
be appropriate to extent this a bit. -Angelo On 14 November 2012 18:32, Junio C Hamano gits...@pobox.com wrote: Angelo Borsotti angelo.borso...@gmail.com writes: actually, I proposed to add a key in config files, e.g. pushTagsNoChange to be set in the remote repo do disallow changes to tags

Re: [PATCH v3 0/5] push: update remote tags only with force

2012-11-14 Thread Angelo Borsotti
Hi Junio, I am *not* convinced that the refs/tags/ is the only special hierarchy whose contents should not move is a bad limitation we should avoid, but if it indeed is a bad limitation, the above is one possible way to think about avoiding it. What other hierarchy besides branches and tags

Re: git push tags

2012-10-29 Thread Angelo Borsotti
Hi, Pro Git, By Scott Chacon says: 2.6 Like most VCSs, Git has the ability to tag specific points in history as being important. Generally, people use this functionality to mark release points (v1.0, and so on). 2.6.2: A [lightweight] tag is very much like a branch that does not change

Re: git push tags

2012-10-29 Thread Angelo Borsotti
Hi Drew, sure. That is a good starting point. I would suggest to block tag updates of existing tags if a dedicated option is present in the config of the remote repo, like, e.g. pushOverwriteTags. -Angelo -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: git push tags

2012-10-29 Thread Angelo Borsotti
Jeff, Then on top of that we can talk about what lightweight tags should do. I'm not sure. If tags (even the lightweight ones) do not behave differently from branches, then they are of no use, and the main difference is that they do not move. So, I would suggest not to move them either.

Re: git config error message

2012-10-27 Thread Angelo Borsotti
Hi Ben This still wouldn't be an error condition though, especially in terms of how git config should treat it. The man page says: This command will fail with non-zero status upon error. Of course, one might claim that this does not mean the truth of the reverse condition, i.e. that when

Re: git config error message

2012-10-27 Thread Angelo Borsotti
Hi Andreas, Is grep not finding a match an error? Is cmp finding a difference an error? It all depends on the context. Manpage of grep, exit staus: Normally, the exit status is 0 if selected lines are found and 1 otherwise. But the exit status is 2 if an error occurred, ... cmp uses

Re: git push tags

2012-10-26 Thread Angelo Borsotti
Hi Drew, Changing the tag in the local repository is a tag modification operation. Pushing that change to a remote repository DOES NOT execute git tag in the remote. Plain and simple the two are different operations. They are different for what concerns the implementation. They are not

Re: git push tags

2012-10-26 Thread Angelo Borsotti
Hi Drew, git is an open source, community project, which means that it benefits from all the contributions of many people, and they are not restricted to patches. If the only one suggestions that were taken into account were patches sent by people that had the time to study the sources and

Re: git push tags

2012-10-26 Thread Angelo Borsotti
Hello Drew, I made some further tests on git-push to see if it handled branches and tags in the same way, and have discovered the following differences: - git push origin --delete master remote: error: By default, deleting the current branch is denied - git push origin --delete

[nodejs] nodejs vs phyton

2012-10-26 Thread Angelo Borsotti
nodejs and phyton are somehow comparable: they are both interpreted programming languages with a binding for the underlying OS. Does some comparison document exist? -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You

Re: git push tags

2012-10-25 Thread Angelo Borsotti
Hi Drew, You specified -f (force) and it did exactly what you asked. That is fully documented (git help tag). Yes, it is, and I used it to show that there is a need to specify explicitly the intent to change a tag, that without such an indication would not be changed. Tags have many uses.

Re: push race

2012-10-16 Thread Angelo Borsotti
Hi Jeff, it would be worth to put your description as comments in the code for future reference. Thanks -Angelo -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: feature request

2012-10-16 Thread Angelo Borsotti
Hi Andrew, one nice thing is to warn a developer that wants to modify a source file, that there is somebody else changing it beforehand. It is nicer than discovering that at push time. Take into account that there are changes in files that may be incompatible to each other, or that can be

Re: push race

2012-10-15 Thread Angelo Borsotti
Hi Marc, correct, there will be no file overwriting because no files are written on the work tree. I tried to follow the actions of the program, but did not quite catch the 6. you mention. -Angelo -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to

Re: git checkout error

2012-10-10 Thread Angelo Borsotti
Junio, giving the user a better error message is certainly an improvement. But would not be another improvement to describe better the command syntax so as to help the user write the command right in the first place? After all, what is the syntax section in commands for? If I had seen in the

Re: git checkout error

2012-10-10 Thread Angelo Borsotti
Hi Junio It is not difficult. The discussion on this list is usually done via patches, and without one, constant talking is buried in other noise and often go unnoticed. Could you accept for very small changes also the simple indication of the change itself instead of a patch? There is

Re: erratic behavior commit --allow-empty

2012-10-04 Thread Angelo Borsotti
Hi Philip and all, let me explain in full what is the problem that I tried to solve, and how along the way I stumbled in something that seems to me a git bug (at least a documentation one). There is an RD team developing software using a workflow that is similar to the integerator-manager one

Re: erratic behavior commit --allow-empty

2012-10-04 Thread Angelo Borsotti
Hi Phil, \ And why is this a problem? Is there a process or person watching the server for a new commit? Is it not enough to notice that the pushed-to branch has a new HEAD? Yes, the developers use the git gui to see the graph of branches and commits. The simpler and uniform it is, the

Re: erratic behavior commit --allow-empty

2012-10-04 Thread Angelo Borsotti
Hi Philip, This has the developers having a full copy/history of the integrators relevant branches, so that when the pull of the developers branch occurs there is a proper link to the integrators history. True. There are other ways to create a branch which has all the developers feature

Re: erratic behavior commit --allow-empty

2012-10-04 Thread Angelo Borsotti
Hi Phil, Another technique could be to simply switch to the sources branch, and then use a 'git clean -x' with an updated .gitignore ('reset' the file from the source branch)[or use the exclude file] to remove those now ignored binaries, before doing the commit. Actually, the first time I

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi PJ and Hannes, try to run the last script that I posted, with and without a sleep 1 before the last commit: git init echo aaa f1 git add f1 git commit -m A git checkout --orphan sources git commit -m A --allow-empty and git init echo aaa f1 git add f1 git commit -m A git checkout --orphan

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Hannes, Perhaps you are confused by the fact that the commit you made first does not have a parent, either. But that is just a side effect that it happened to be the very first commit that you made after 'git init'. Well, I know that, and this is why I added --allow-empty. The man page of

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
In reply to Philip, I understand what the implementation does, but I am stating that it is not what the user (by reading the man page) expects. The user adds --allow-empty to have a different unique commit, such seems to be the purpose of the option. Unfortunately, it gets that only sometimes,

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Matthiew, Then the second commit does not create a new blob object for file2.txt, because it has the same content as an existing one. But the point is: you really don't care, or indeed, you care about sharing the blob objects to save disk space. That is fine, and it is well documented.

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Andreas, Where does the manual say that --allow-empty implies a different and unique commit? In the git commit man page: --allow-empty Usually recording a commit that has the exact same tree as its sole parent commit is a mistake, and the command prevents you from making such a

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Thomas, The documentation only states that it will skip the 'same tree as parent' check, not that it will *always* create a new commit. Ok, understood: you believe that the documentation is clear, and I that it is somehow not. I would prefer to have it more plain. But that is not all the

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Phil I think what you are missing here is that the script does _not_ have to take care for this special case. The script can do the same thing it does for all the other cases and it will work just fine. This is because your goal, as I understand it, is this: A. Take this branch, B.

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Phil, Perhaps the confusion arises from the the meaning of the safety. In this case, the safety mechanism in place is to prevent you from creating a child commit which has the same tree contents (working directory) as the parent commit. It will not be the same commit because it has

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Andreas, But where does it say different and unique? It does not, but it says: Usually recording a commit that has the exact same tree as its sole parent commit is a mistake, and the command prevents you from making such a commit., followed by This option bypasses the safety ... leading to

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Matthiew, You don't understand what an orphan branch is. I do not think so. I wanted to create a branch with a commit that has no parent, and I think that this is called orphan branch. I wanted also to have another branch, pointing to a different commit, the difference being that this

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
HI PJ, take a git commit without --allow-empty: if the trees are equal, it creates no commit, and if the trees are different it creates one. Take then a git commit --allow-empty: if the trees are equal it may create a commit or not depending on the parent, message, author and date; if the trees

Re: erratic behavior commit --allow-empty

2012-10-03 Thread Angelo Borsotti
Hi Andreas, as a user, and owner of a repository I do care about the objects that are in it. I do not care about the way they are names, be it numbers or sha's, but for sure about their existence. So, for me it is important if a command creates a new commit or not. The commit is _always_

Re: erratic behavior commit --allow-empty

2012-10-02 Thread Angelo Borsotti
Hi having such a time-dependent behavior is not nice. It means that the user must know it, and wait patiently before issuing the command, or in a script add a sleep before the command. The choice is then between adding a warning in the man page (please wait at least a second before executing the

Re: erratic behavior commit --allow-empty

2012-10-02 Thread Angelo Borsotti
Hi Junio, if I put on my head the implementor's hat, I would agree with you: that command after all behaves as implemented. However, if I put the user's hat I would reason differently. What I need are predictable commands, and that by all means is not. This because the time at which a command is

Re: erratic behavior commit --allow-empty

2012-10-02 Thread Angelo Borsotti
Hi Junio, It does create one; it just is the same one you already happen to have, when you record the same state on top of the same history as the same person at the same time. No, it does not create one: as you can see from the trace of the execution of my script, the sha of the commit is

Re: git gui does not open bare repositories

2012-09-28 Thread Angelo Borsotti
I have removed the Italian localization so as to make git gui use the English one. The result is the same as I have found before. The message is: Not a Git repository: remote.git. Thus, the misleading message is there. -Angelo -- To unsubscribe from this list: send the line unsubscribe git in

Re: git gui does not open bare repositories

2012-09-28 Thread Angelo Borsotti
Hi Ben, I am running git gui on Windows 7. Are you running it on Linux? -Angelo -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: git gui does not open bare repositories

2012-09-28 Thread Angelo Borsotti
Hi Ben, I run the same test on Linux, and have got the same results as you did. So the problem is only on Windows. -Angelo -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [git-users] avoid pulling binaries

2012-09-26 Thread Angelo Borsotti
Hi Konstantin, I have got your suggestion, and done the following: - created a topic branch - forked a develop branch from it - done all the development work, several commits saving all files, sources and binaries - git checkout topic - git merge --squash --no-commit develop

Re: [git-users] avoid pulling binaries

2012-09-26 Thread Angelo Borsotti
Hi Konstantin, the idea of using merge --squash comes from: 1. the need to have a clean history of the changes: the developer that implements something (e.g. a feature or a bugfix) on a topic branch could have done it creating several commits in her/his development branch,

[git-users] avoid pulling binaries

2012-09-25 Thread Angelo Borsotti
Suppose I have a private repository and a public one. I develop using my private repository, and at significant steps I do a commit in which I save all, sources] and binaries. The reason for saving binaries is to allow to recover a previously committed version without having then to rebuild all

[twdev] Re: Testers needed for TiddlyFox, a TiddlyWiki extension for Firefox

2012-09-16 Thread Angelo Borsotti
The is a long discussion ongoing on this problem in Firefox, see: https://bugzilla.mozilla.org/show_bug.cgi?id=546848 Lots of complaints, and some proposals to solve the issue. Someone mentioned Tiddlywiki there. It would be appropriate to see there the complaints of the developers of

Re: WebAPI Security Discussion: Device Storage API

2012-09-15 Thread angelo . borsotti
Apps that are implemented using traditional technologies, like, e.g. C++ or Java have already solved this problem, and the solution is quite simple: trust the origin of the app. E.g. when downloading and installing Libreoffice I trust that the app will not wipe out my filesystem and that it will

Re: checkout extra files

2012-09-04 Thread Angelo Borsotti
Hi all, consider this example: $ mkdir gittest $ cd gittest $ git init Initialized empty Git repository in d:/gittest/.git/ $ touch f1 $ git add f1 $ git commit commit -m first commit [master (root-commit) e6f935e] first commit 0 files changed create mode 100644 f1 $ touch f2 $ git checkout

Re: checkout extra files

2012-09-04 Thread Angelo Borsotti
Hi, figuring out what the behavior is by guessing how a command is implemented and what are its interactions with the shell is a bit hard for the user: s/he should instead get it from the documentation. I tried to figure it out from the examples I have done, and as you see, I did not get it quite

[git-users] git contents model

2012-07-13 Thread Angelo Borsotti
I have the impression that the underlying model of a git repository is made of a .git archive plus a work directory in which (some version of, e.g. the latest) the files are present. I.e. at least one version of the files are stored twice. E.g. suppose I create a new project and initialize git

Re: [Bug 480566] Re: epoll_wait man page error

2012-04-30 Thread Angelo Borsotti
Hi Michael. the correct text should be: EINTR The call was interrupted by a signal handler before any of the requested events occurred; see signal(7). The issue is that EINTR is not returned when the timeout expires, but only when one of the events occur. -Angelo -- You

Re: [Bug 888485] Re: missing icon

2011-12-21 Thread Angelo Borsotti
I have logged in as guest, and the missing icon is shown. In my home directory there is no .profile. The contents of my xsession error file is quite similar to that of the guest user. What could then the cause of the missing icon? -Angelo -- You received this bug notification because you are a

Re: [Bug 888485] Re: missing icon

2011-12-21 Thread Angelo Borsotti
The installation is a fresh one, with the default theme. If you need I can take a photograph of the screen and send it to you. -Angelo -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/888485 Title:

[Bug 888485] [NEW] missing icon

2011-11-10 Thread Angelo Borsotti
Public bug reported: I have upgraded from 11.04 to 11.10, and having a computer with a Nvidia card I have installed the latest Nvidia driver thru the Ubuntu software center. On the desktop, on the top bar, the last icon I see is the one with my username account. However, there should be one

[Bug 888487] [NEW] Default video card driver broken

2011-11-10 Thread Angelo Borsotti
Public bug reported: I have upgraded from 11.04 to 11.10. 11.10 comes with a default video driver that does not work on a computer that has a Nvidia video card. The desktop freezes to that there is no way out except by switching off the computer. I then installed the proprietary Nvidia driver

Re: [Bug 454722] Re: inotify does not watch /proc

2010-08-23 Thread Angelo Borsotti
Hi Fabio, yes, the same problem occurs in lucid. I have tested it right now and have seen that inotify does not work as expected. -Angelo -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 454722] Re: inotify does not watch /proc

2010-08-23 Thread Angelo Borsotti
apport information ** Tags added: apport-collected ** Description changed: Compile the following program (inotifyerr.c) #include stdlib.h #include stdio.h #include sys/inotify.h int main(int argc, char* argv[]){ int fd = inotify_init(); if (fd == -1){

[Bug 454722] AplayDevices.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: AplayDevices.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513677/+files/AplayDevices.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 454722] ArecordDevices.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: ArecordDevices.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513678/+files/ArecordDevices.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu

[Bug 454722] Card0.Amixer.values.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: Card0.Amixer.values.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513680/+files/Card0.Amixer.values.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member

[Bug 454722] BootDmesg.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: BootDmesg.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513679/+files/BootDmesg.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 454722] Card0.Codecs.codec.0.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: Card0.Codecs.codec.0.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513681/+files/Card0.Codecs.codec.0.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member

[Bug 454722] CurrentDmesg.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: CurrentDmesg.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513682/+files/CurrentDmesg.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 454722] IwConfig.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: IwConfig.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513683/+files/IwConfig.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 454722] Lspci.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: Lspci.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513684/+files/Lspci.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 454722] ProcCpuinfo.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: ProcCpuinfo.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513686/+files/ProcCpuinfo.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 454722] ProcModules.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: ProcModules.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513688/+files/ProcModules.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 454722] PciMultimedia.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: PciMultimedia.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513685/+files/PciMultimedia.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu

[Bug 454722] ProcInterrupts.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: ProcInterrupts.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513687/+files/ProcInterrupts.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu

[Bug 454722] UdevDb.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: UdevDb.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513689/+files/UdevDb.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 454722] WifiSyslog.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: WifiSyslog.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513691/+files/WifiSyslog.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 454722] UdevLog.txt

2010-08-23 Thread Angelo Borsotti
apport information ** Attachment added: UdevLog.txt https://bugs.edge.launchpad.net/bugs/454722/+attachment/1513690/+files/UdevLog.txt -- inotify does not watch /proc https://bugs.launchpad.net/bugs/454722 You received this bug notification because you are a member of Ubuntu Bugs, which is

Re: [Bug 370853] Re: POSIX cancallation points not supported

2010-08-22 Thread Angelo Borsotti
Hello Fabio, the error that I have reported in the man page of pthread_cancel has been corrected. That man page has been updated both in 9.04 and in the releases after it. You can then close the bug. Thank you -Angelo Borsotti -- POSIX cancallation points not supported https

Re: [Bug 369757] Re: hibernate does not work

2010-08-22 Thread Angelo Borsotti
Hello, I have tested again the hibernation in Ubuntu 10.04, and have seen that the problem has been solved. You can then close the bug. Thank you -Angelo Borsotti -- hibernate does not work https://bugs.launchpad.net/bugs/369757 You received this bug notification because you are a member

Re: [Bug 488691] Re: sigaltstack man page error

2010-08-22 Thread Angelo Borsotti
is that of a thread, not that of a process. The url above instead mentions explicitly that the stack is that of the current thread. To remove the bug, the man page file for sigaltstack must be changed to make it consistent with the url above. Thank you -Angelo Borsotti -- sigaltstack man page error

Re: [Bug 489497] Re: timer_delete does not cancel the thread to run the function

2010-08-22 Thread Angelo Borsotti
provide? Thank you -Angelo Borsotti -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs

Re: [Bug 370853] Re: POSIX cancallation points not supported

2010-07-25 Thread Angelo Borsotti
Hi Fabio, I am on vacation at the moment and have no way to test the bug with lucid, but I will do it as soon as I will come back. Thank you -Angelo -- POSIX cancallation points not supported https://bugs.launchpad.net/bugs/370853 You received this bug notification because you are a member of

[h-e-w] edt emulation, arrows

2010-05-25 Thread Angelo Borsotti
Enable the EDT emulation. Then press the key with the dot on the numeric keypad. This starts the selection of text. Press then the left arrow. The selection disappears, while it should not. The arrows serve to enlarge the portion of the text selected. In GNU Emacs 23.1.50.1

Re: [Bug 370967] Re: raise(3) produces SI_TKILL in siginfo_t

2010-05-20 Thread Angelo Borsotti
Philippe, then the man page must be changed because it is telling something that is not true. -Angelo -- raise(3) produces SI_TKILL in siginfo_t https://bugs.launchpad.net/bugs/370967 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 489497] Re: timer_delete does not cancel the thread to run the function

2010-05-16 Thread Angelo Borsotti
apport information ** Tags added: apport-collected ** Description changed: timer_create(), when told to run a function at time expiration, creates immediately an ancillary thread (it could have created it when armed, or even better, when expired). When the timer is deleted, the

[Bug 489497] AplayDevices.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: AplayDevices.txt http://launchpadlibrarian.net/48567207/AplayDevices.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 489497] ArecordDevices.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: ArecordDevices.txt http://launchpadlibrarian.net/48567208/ArecordDevices.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu

[Bug 489497] BootDmesg.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: BootDmesg.txt http://launchpadlibrarian.net/48567212/BootDmesg.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 489497] Card0.Amixer.values.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: Card0.Amixer.values.txt http://launchpadlibrarian.net/48567214/Card0.Amixer.values.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of

[Bug 489497] Card0.Codecs.codec.0.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: Card0.Codecs.codec.0.txt http://launchpadlibrarian.net/48567216/Card0.Codecs.codec.0.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member

[Bug 489497] CurrentDmesg.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: CurrentDmesg.txt http://launchpadlibrarian.net/48567218/CurrentDmesg.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 489497] IwConfig.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: IwConfig.txt http://launchpadlibrarian.net/48567227/IwConfig.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 489497] Lspci.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: Lspci.txt http://launchpadlibrarian.net/48567243/Lspci.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 489497] PciMultimedia.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: PciMultimedia.txt http://launchpadlibrarian.net/48567245/PciMultimedia.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 489497] ProcCpuinfo.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: ProcCpuinfo.txt http://launchpadlibrarian.net/48567247/ProcCpuinfo.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 489497] ProcModules.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: ProcModules.txt http://launchpadlibrarian.net/48567249/ProcModules.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 489497] ProcInterrupts.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: ProcInterrupts.txt http://launchpadlibrarian.net/48567248/ProcInterrupts.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu

[Bug 489497] UdevDb.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: UdevDb.txt http://launchpadlibrarian.net/48567250/UdevDb.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 489497] UdevLog.txt

2010-05-16 Thread Angelo Borsotti
apport information ** Attachment added: UdevLog.txt http://launchpadlibrarian.net/48567251/UdevLog.txt -- timer_delete does not cancel the thread to run the function https://bugs.launchpad.net/bugs/489497 You received this bug notification because you are a member of Ubuntu Bugs, which is

  1   2   >