home *** CD-ROM | disk | FTP | other *** search
- export int ShowAllChanged() /* Show all changed buffers */
- {
- int firstid=GetBufferID();
- int id=firstid;
- string files="";
-
- do {
- if (ReadInfo("changes", id))
- files=joinstr(files, ReadInfo("file_name", id), "\n");
- id=NextBuffer(id);
- if (id == firstid)
- id=0;
- } while (id);
-
- if (strlen(files))
- Request(files, "Changed files", "Got it!");
- else
- ReturnStatus("No files changed!");
- }
- AssignKey("ShowAllChanged();", "Amiga Control c");
-